Random Color Generator

#edebdb Color

Color Codes
Hex Code #edebdb
RGB Code rgb(237, 235, 219)
HSL Code hsl(53, 33%, 89%)

#edebdb Color Syntax

rgb()

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

 main {
    background-color: rgb(237, 235, 219);
   }

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(53, 33%, 89%);
  }

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

RGB Code Hex Code Preview
rgb(237, 235, 219, 10%) #edebdb1a  
rgb(237, 235, 219, 20%) #edebdb33  
rgb(237, 235, 219, 40%) #edebdb4C  
rgb(237, 235, 219, 60%) #edebdb99  
rgb(237, 235, 219, 80%) #edebdbCC  
rgb(237, 235, 219, 100%) #edebdbFF  

Saturated and desaturated colors of #edebdb

HSL Code Preview
hsl(53, 10%, 89%)  
hsl(53, 20%, 89%)  
hsl(53, 40%, 89%)  
hsl(53, 60%, 89%)  
hsl(53, 80%, 89%)  
hsl(53, 100%, 89%)  

#edebdb Color Usage In CSS

 body {
    color: #edebdb;
    }
 p {
    color: rgb(237, 235, 219);
    }
 header {
    border-bottom:1px solid #edebdb;
    }
Recent Random Colors