Random Color Generator

#e2cb26 Color

Color Codes
Hex Code #e2cb26
RGB Code rgb(226, 203, 38)
HSL Code hsl(53, 76%, 52%)

#e2cb26 Color Syntax

rgb()

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

 main {
    background-color: rgb(226, 203, 38);
   }

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, 76%, 52%);
  }

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

RGB Code Hex Code Preview
rgb(226, 203, 38, 10%) #e2cb261a  
rgb(226, 203, 38, 20%) #e2cb2633  
rgb(226, 203, 38, 40%) #e2cb264C  
rgb(226, 203, 38, 60%) #e2cb2699  
rgb(226, 203, 38, 80%) #e2cb26CC  
rgb(226, 203, 38, 100%) #e2cb26FF  

Saturated and desaturated colors of #e2cb26

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

#e2cb26 Color Usage In CSS

 body {
    color: #e2cb26;
    }
 p {
    color: rgb(226, 203, 38);
    }
 header {
    border-bottom:1px solid #e2cb26;
    }
Recent Random Colors