Random Color Generator

#edd7bb Color

Color Codes
Hex Code #edd7bb
RGB Code rgb(237, 215, 187)
HSL Code hsl(34, 58%, 83%)

#edd7bb Color Syntax

rgb()

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

 main {
    background-color: rgb(237, 215, 187);
   }

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(34, 58%, 83%);
  }

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

RGB Code Hex Code Preview
rgb(237, 215, 187, 10%) #edd7bb1a  
rgb(237, 215, 187, 20%) #edd7bb33  
rgb(237, 215, 187, 40%) #edd7bb4C  
rgb(237, 215, 187, 60%) #edd7bb99  
rgb(237, 215, 187, 80%) #edd7bbCC  
rgb(237, 215, 187, 100%) #edd7bbFF  

Saturated and desaturated colors of #edd7bb

HSL Code Preview
hsl(34, 10%, 83%)  
hsl(34, 20%, 83%)  
hsl(34, 40%, 83%)  
hsl(34, 60%, 83%)  
hsl(34, 80%, 83%)  
hsl(34, 100%, 83%)  

#edd7bb Color Usage In CSS

 body {
    color: #edd7bb;
    }
 p {
    color: rgb(237, 215, 187);
    }
 header {
    border-bottom:1px solid #edd7bb;
    }
Recent Random Colors