Random Color Generator

#c6826a Color

Color Codes
Hex Code #c6826a
RGB Code rgb(198, 130, 106)
HSL Code hsl(16, 45%, 60%)

#c6826a Color Syntax

rgb()

 rgb(Red, Green, Blue);
 rgba(Red, Green, Blue, Alpha);

 main {
    background-color: rgb(198, 130, 106);
   }

R(red), G(green), B(blue) can be number between 0-255.
A parameter is a hex characters (0–9, A–F) and optional.

hsl()

 hsl(hue saturation lightness);
 hsl(hue saturation lightness / alpha);

 div {
  background-color: hsl(16, 45%, 60%);
  }

Saturation value is a percentage value between 0% unsaturated and 100% fully saturated.
Lightness value is a percentage value between 100% is white and 0% is black.

Lighter and darker colors of #c6826a

RGB Code Hex Code Preview
rgb(198, 130, 106, 10%) #c6826a1a  
rgb(198, 130, 106, 20%) #c6826a33  
rgb(198, 130, 106, 40%) #c6826a4C  
rgb(198, 130, 106, 60%) #c6826a99  
rgb(198, 130, 106, 80%) #c6826aCC  
rgb(198, 130, 106, 100%) #c6826aFF  

Saturated and desaturated colors of #c6826a

HSL Code Preview
hsl(16, 10%, 60%)  
hsl(16, 20%, 60%)  
hsl(16, 40%, 60%)  
hsl(16, 60%, 60%)  
hsl(16, 80%, 60%)  
hsl(16, 100%, 60%)  

#c6826a Color Usage In CSS

 body {
    color: #c6826a;
    }
 p {
    color: rgb(198, 130, 106);
    }
 header {
    border-bottom:1px solid #c6826a;
    }
Recent Random Colors