Random Color Generator

#e47f0a Color

Color Codes
Hex Code #e47f0a
RGB Code rgb(228, 127, 10)
HSL Code hsl(32, 92%, 47%)

#e47f0a Color Syntax

rgb()

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

 main {
    background-color: rgb(228, 127, 10);
   }

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(32, 92%, 47%);
  }

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

RGB Code Hex Code Preview
rgb(228, 127, 10, 10%) #e47f0a1a  
rgb(228, 127, 10, 20%) #e47f0a33  
rgb(228, 127, 10, 40%) #e47f0a4C  
rgb(228, 127, 10, 60%) #e47f0a99  
rgb(228, 127, 10, 80%) #e47f0aCC  
rgb(228, 127, 10, 100%) #e47f0aFF  

Saturated and desaturated colors of #e47f0a

HSL Code Preview
hsl(32, 10%, 47%)  
hsl(32, 20%, 47%)  
hsl(32, 40%, 47%)  
hsl(32, 60%, 47%)  
hsl(32, 80%, 47%)  
hsl(32, 100%, 47%)  

#e47f0a Color Usage In CSS

 body {
    color: #e47f0a;
    }
 p {
    color: rgb(228, 127, 10);
    }
 header {
    border-bottom:1px solid #e47f0a;
    }
Recent Random Colors