Random Color Generator

#ffedcb Color

Color Codes
Hex Code #ffedcb
RGB Code rgb(255, 237, 203)
HSL Code hsl(39, 100%, 90%)

#ffedcb Color Syntax

rgb()

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

 main {
    background-color: rgb(255, 237, 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(39, 100%, 90%);
  }

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

RGB Code Hex Code Preview
rgb(255, 237, 203, 10%) #ffedcb1a  
rgb(255, 237, 203, 20%) #ffedcb33  
rgb(255, 237, 203, 40%) #ffedcb4C  
rgb(255, 237, 203, 60%) #ffedcb99  
rgb(255, 237, 203, 80%) #ffedcbCC  
rgb(255, 237, 203, 100%) #ffedcbFF  

Saturated and desaturated colors of #ffedcb

HSL Code Preview
hsl(39, 10%, 90%)  
hsl(39, 20%, 90%)  
hsl(39, 40%, 90%)  
hsl(39, 60%, 90%)  
hsl(39, 80%, 90%)  
hsl(39, 100%, 90%)  

#ffedcb Color Usage In CSS

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