Random Color Generator

#e4dc06 Color

Color Codes
Hex Code #e4dc06
RGB Code rgb(228, 220, 06)
HSL Code hsl(58, 95%, 46%)

#e4dc06 Color Syntax

rgb()

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

 main {
    background-color: rgb(228, 220, 06);
   }

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(58, 95%, 46%);
  }

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

RGB Code Hex Code Preview
rgb(228, 220, 06, 10%) #e4dc061a  
rgb(228, 220, 06, 20%) #e4dc0633  
rgb(228, 220, 06, 40%) #e4dc064C  
rgb(228, 220, 06, 60%) #e4dc0699  
rgb(228, 220, 06, 80%) #e4dc06CC  
rgb(228, 220, 06, 100%) #e4dc06FF  

Saturated and desaturated colors of #e4dc06

HSL Code Preview
hsl(58, 10%, 46%)  
hsl(58, 20%, 46%)  
hsl(58, 40%, 46%)  
hsl(58, 60%, 46%)  
hsl(58, 80%, 46%)  
hsl(58, 100%, 46%)  

#e4dc06 Color Usage In CSS

 body {
    color: #e4dc06;
    }
 p {
    color: rgb(228, 220, 06);
    }
 header {
    border-bottom:1px solid #e4dc06;
    }
Recent Random Colors