Random Color Generator

#e0c449 Color

Color Codes
Hex Code #e0c449
RGB Code rgb(224, 196, 73)
HSL Code hsl(49, 71%, 58%)

#e0c449 Color Syntax

rgb()

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

 main {
    background-color: rgb(224, 196, 73);
   }

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(49, 71%, 58%);
  }

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

RGB Code Hex Code Preview
rgb(224, 196, 73, 10%) #e0c4491a  
rgb(224, 196, 73, 20%) #e0c44933  
rgb(224, 196, 73, 40%) #e0c4494C  
rgb(224, 196, 73, 60%) #e0c44999  
rgb(224, 196, 73, 80%) #e0c449CC  
rgb(224, 196, 73, 100%) #e0c449FF  

Saturated and desaturated colors of #e0c449

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

#e0c449 Color Usage In CSS

 body {
    color: #e0c449;
    }
 p {
    color: rgb(224, 196, 73);
    }
 header {
    border-bottom:1px solid #e0c449;
    }
Recent Random Colors