Random Color Generator

#e96032 Color

Color Codes
Hex Code #e96032
RGB Code rgb(233, 96, 50)
HSL Code hsl(15, 81%, 55%)

#e96032 Color Syntax

rgb()

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

 main {
    background-color: rgb(233, 96, 50);
   }

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(15, 81%, 55%);
  }

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

RGB Code Hex Code Preview
rgb(233, 96, 50, 10%) #e960321a  
rgb(233, 96, 50, 20%) #e9603233  
rgb(233, 96, 50, 40%) #e960324C  
rgb(233, 96, 50, 60%) #e9603299  
rgb(233, 96, 50, 80%) #e96032CC  
rgb(233, 96, 50, 100%) #e96032FF  

Saturated and desaturated colors of #e96032

HSL Code Preview
hsl(15, 10%, 55%)  
hsl(15, 20%, 55%)  
hsl(15, 40%, 55%)  
hsl(15, 60%, 55%)  
hsl(15, 80%, 55%)  
hsl(15, 100%, 55%)  

#e96032 Color Usage In CSS

 body {
    color: #e96032;
    }
 p {
    color: rgb(233, 96, 50);
    }
 header {
    border-bottom:1px solid #e96032;
    }
Recent Random Colors