Random Color Generator

#eeb52a Color

Color Codes
Hex Code #eeb52a
RGB Code rgb(238, 181, 42)
HSL Code hsl(43, 85%, 55%)

#eeb52a Color Syntax

rgb()

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

 main {
    background-color: rgb(238, 181, 42);
   }

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(43, 85%, 55%);
  }

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

RGB Code Hex Code Preview
rgb(238, 181, 42, 10%) #eeb52a1a  
rgb(238, 181, 42, 20%) #eeb52a33  
rgb(238, 181, 42, 40%) #eeb52a4C  
rgb(238, 181, 42, 60%) #eeb52a99  
rgb(238, 181, 42, 80%) #eeb52aCC  
rgb(238, 181, 42, 100%) #eeb52aFF  

Saturated and desaturated colors of #eeb52a

HSL Code Preview
hsl(43, 10%, 55%)  
hsl(43, 20%, 55%)  
hsl(43, 40%, 55%)  
hsl(43, 60%, 55%)  
hsl(43, 80%, 55%)  
hsl(43, 100%, 55%)  

#eeb52a Color Usage In CSS

 body {
    color: #eeb52a;
    }
 p {
    color: rgb(238, 181, 42);
    }
 header {
    border-bottom:1px solid #eeb52a;
    }
Recent Random Colors