Random Color Generator

#e3c262 Color

Color Codes
Hex Code #e3c262
RGB Code rgb(227, 194, 98)
HSL Code hsl(45, 70%, 64%)

#e3c262 Color Syntax

rgb()

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

 main {
    background-color: rgb(227, 194, 98);
   }

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(45, 70%, 64%);
  }

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

RGB Code Hex Code Preview
rgb(227, 194, 98, 10%) #e3c2621a  
rgb(227, 194, 98, 20%) #e3c26233  
rgb(227, 194, 98, 40%) #e3c2624C  
rgb(227, 194, 98, 60%) #e3c26299  
rgb(227, 194, 98, 80%) #e3c262CC  
rgb(227, 194, 98, 100%) #e3c262FF  

Saturated and desaturated colors of #e3c262

HSL Code Preview
hsl(45, 10%, 64%)  
hsl(45, 20%, 64%)  
hsl(45, 40%, 64%)  
hsl(45, 60%, 64%)  
hsl(45, 80%, 64%)  
hsl(45, 100%, 64%)  

#e3c262 Color Usage In CSS

 body {
    color: #e3c262;
    }
 p {
    color: rgb(227, 194, 98);
    }
 header {
    border-bottom:1px solid #e3c262;
    }
Recent Random Colors