Random Color Generator

#ea541e Color

Color Codes
Hex Code #ea541e
RGB Code rgb(234, 84, 30)
HSL Code hsl(16, 83%, 52%)

#ea541e Color Syntax

rgb()

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

 main {
    background-color: rgb(234, 84, 30);
   }

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(16, 83%, 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 #ea541e

RGB Code Hex Code Preview
rgb(234, 84, 30, 10%) #ea541e1a  
rgb(234, 84, 30, 20%) #ea541e33  
rgb(234, 84, 30, 40%) #ea541e4C  
rgb(234, 84, 30, 60%) #ea541e99  
rgb(234, 84, 30, 80%) #ea541eCC  
rgb(234, 84, 30, 100%) #ea541eFF  

Saturated and desaturated colors of #ea541e

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

#ea541e Color Usage In CSS

 body {
    color: #ea541e;
    }
 p {
    color: rgb(234, 84, 30);
    }
 header {
    border-bottom:1px solid #ea541e;
    }
Recent Random Colors