Random Color Generator

#c6c1cf Color

Color Codes
Hex Code #c6c1cf
RGB Code rgb(198, 193, 207)
HSL Code hsl(261, 13%, 78%)

#c6c1cf Color Syntax

rgb()

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

 main {
    background-color: rgb(198, 193, 207);
   }

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(261, 13%, 78%);
  }

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 #c6c1cf

RGB Code Hex Code Preview
rgb(198, 193, 207, 10%) #c6c1cf1a  
rgb(198, 193, 207, 20%) #c6c1cf33  
rgb(198, 193, 207, 40%) #c6c1cf4C  
rgb(198, 193, 207, 60%) #c6c1cf99  
rgb(198, 193, 207, 80%) #c6c1cfCC  
rgb(198, 193, 207, 100%) #c6c1cfFF  

Saturated and desaturated colors of #c6c1cf

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

#c6c1cf Color Usage In CSS

 body {
    color: #c6c1cf;
    }
 p {
    color: rgb(198, 193, 207);
    }
 header {
    border-bottom:1px solid #c6c1cf;
    }
Recent Random Colors