Random Color Generator

#e39412 Color

Color Codes
Hex Code #e39412
RGB Code rgb(227, 148, 18)
HSL Code hsl(37, 85%, 48%)

#e39412 Color Syntax

rgb()

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

 main {
    background-color: rgb(227, 148, 18);
   }

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(37, 85%, 48%);
  }

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

RGB Code Hex Code Preview
rgb(227, 148, 18, 10%) #e394121a  
rgb(227, 148, 18, 20%) #e3941233  
rgb(227, 148, 18, 40%) #e394124C  
rgb(227, 148, 18, 60%) #e3941299  
rgb(227, 148, 18, 80%) #e39412CC  
rgb(227, 148, 18, 100%) #e39412FF  

Saturated and desaturated colors of #e39412

HSL Code Preview
hsl(37, 10%, 48%)  
hsl(37, 20%, 48%)  
hsl(37, 40%, 48%)  
hsl(37, 60%, 48%)  
hsl(37, 80%, 48%)  
hsl(37, 100%, 48%)  

#e39412 Color Usage In CSS

 body {
    color: #e39412;
    }
 p {
    color: rgb(227, 148, 18);
    }
 header {
    border-bottom:1px solid #e39412;
    }
Recent Random Colors