Random Color Generator

#e4a056 Color

Color Codes
Hex Code #e4a056
RGB Code rgb(228, 160, 86)
HSL Code hsl(31, 72%, 62%)

#e4a056 Color Syntax

rgb()

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

 main {
    background-color: rgb(228, 160, 86);
   }

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(31, 72%, 62%);
  }

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

RGB Code Hex Code Preview
rgb(228, 160, 86, 10%) #e4a0561a  
rgb(228, 160, 86, 20%) #e4a05633  
rgb(228, 160, 86, 40%) #e4a0564C  
rgb(228, 160, 86, 60%) #e4a05699  
rgb(228, 160, 86, 80%) #e4a056CC  
rgb(228, 160, 86, 100%) #e4a056FF  

Saturated and desaturated colors of #e4a056

HSL Code Preview
hsl(31, 10%, 62%)  
hsl(31, 20%, 62%)  
hsl(31, 40%, 62%)  
hsl(31, 60%, 62%)  
hsl(31, 80%, 62%)  
hsl(31, 100%, 62%)  

#e4a056 Color Usage In CSS

 body {
    color: #e4a056;
    }
 p {
    color: rgb(228, 160, 86);
    }
 header {
    border-bottom:1px solid #e4a056;
    }
Recent Random Colors