Random Color Generator

#c5b6cd Color

Color Codes
Hex Code #c5b6cd
RGB Code rgb(197, 182, 205)
HSL Code hsl(279, 19%, 76%)

#c5b6cd Color Syntax

rgb()

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

 main {
    background-color: rgb(197, 182, 205);
   }

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(279, 19%, 76%);
  }

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

RGB Code Hex Code Preview
rgb(197, 182, 205, 10%) #c5b6cd1a  
rgb(197, 182, 205, 20%) #c5b6cd33  
rgb(197, 182, 205, 40%) #c5b6cd4C  
rgb(197, 182, 205, 60%) #c5b6cd99  
rgb(197, 182, 205, 80%) #c5b6cdCC  
rgb(197, 182, 205, 100%) #c5b6cdFF  

Saturated and desaturated colors of #c5b6cd

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

#c5b6cd Color Usage In CSS

 body {
    color: #c5b6cd;
    }
 p {
    color: rgb(197, 182, 205);
    }
 header {
    border-bottom:1px solid #c5b6cd;
    }
Recent Random Colors