Random Color Generator

#c7c6d8 Color

Color Codes
Hex Code #c7c6d8
RGB Code rgb(199, 198, 216)
HSL Code hsl(243, 19%, 81%)

#c7c6d8 Color Syntax

rgb()

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

 main {
    background-color: rgb(199, 198, 216);
   }

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(243, 19%, 81%);
  }

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

RGB Code Hex Code Preview
rgb(199, 198, 216, 10%) #c7c6d81a  
rgb(199, 198, 216, 20%) #c7c6d833  
rgb(199, 198, 216, 40%) #c7c6d84C  
rgb(199, 198, 216, 60%) #c7c6d899  
rgb(199, 198, 216, 80%) #c7c6d8CC  
rgb(199, 198, 216, 100%) #c7c6d8FF  

Saturated and desaturated colors of #c7c6d8

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

#c7c6d8 Color Usage In CSS

 body {
    color: #c7c6d8;
    }
 p {
    color: rgb(199, 198, 216);
    }
 header {
    border-bottom:1px solid #c7c6d8;
    }
Recent Random Colors