Random Color Generator

#c2b8cb Color

Color Codes
Hex Code #c2b8cb
RGB Code rgb(194, 184, 203)
HSL Code hsl(272, 15%, 76%)

#c2b8cb Color Syntax

rgb()

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

 main {
    background-color: rgb(194, 184, 203);
   }

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(272, 15%, 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 #c2b8cb

RGB Code Hex Code Preview
rgb(194, 184, 203, 10%) #c2b8cb1a  
rgb(194, 184, 203, 20%) #c2b8cb33  
rgb(194, 184, 203, 40%) #c2b8cb4C  
rgb(194, 184, 203, 60%) #c2b8cb99  
rgb(194, 184, 203, 80%) #c2b8cbCC  
rgb(194, 184, 203, 100%) #c2b8cbFF  

Saturated and desaturated colors of #c2b8cb

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

#c2b8cb Color Usage In CSS

 body {
    color: #c2b8cb;
    }
 p {
    color: rgb(194, 184, 203);
    }
 header {
    border-bottom:1px solid #c2b8cb;
    }
Recent Random Colors