Random Color Generator

#edc8cb Color

Color Codes
Hex Code #edc8cb
RGB Code rgb(237, 200, 203)
HSL Code hsl(355, 51%, 86%)

#edc8cb Color Syntax

rgb()

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

 main {
    background-color: rgb(237, 200, 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(355, 51%, 86%);
  }

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

RGB Code Hex Code Preview
rgb(237, 200, 203, 10%) #edc8cb1a  
rgb(237, 200, 203, 20%) #edc8cb33  
rgb(237, 200, 203, 40%) #edc8cb4C  
rgb(237, 200, 203, 60%) #edc8cb99  
rgb(237, 200, 203, 80%) #edc8cbCC  
rgb(237, 200, 203, 100%) #edc8cbFF  

Saturated and desaturated colors of #edc8cb

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

#edc8cb Color Usage In CSS

 body {
    color: #edc8cb;
    }
 p {
    color: rgb(237, 200, 203);
    }
 header {
    border-bottom:1px solid #edc8cb;
    }
Recent Random Colors