Random Color Generator

#e3731c Color

Color Codes
Hex Code #e3731c
RGB Code rgb(227, 115, 28)
HSL Code hsl(26, 78%, 50%)

#e3731c Color Syntax

rgb()

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

 main {
    background-color: rgb(227, 115, 28);
   }

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(26, 78%, 50%);
  }

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

RGB Code Hex Code Preview
rgb(227, 115, 28, 10%) #e3731c1a  
rgb(227, 115, 28, 20%) #e3731c33  
rgb(227, 115, 28, 40%) #e3731c4C  
rgb(227, 115, 28, 60%) #e3731c99  
rgb(227, 115, 28, 80%) #e3731cCC  
rgb(227, 115, 28, 100%) #e3731cFF  

Saturated and desaturated colors of #e3731c

HSL Code Preview
hsl(26, 10%, 50%)  
hsl(26, 20%, 50%)  
hsl(26, 40%, 50%)  
hsl(26, 60%, 50%)  
hsl(26, 80%, 50%)  
hsl(26, 100%, 50%)  

#e3731c Color Usage In CSS

 body {
    color: #e3731c;
    }
 p {
    color: rgb(227, 115, 28);
    }
 header {
    border-bottom:1px solid #e3731c;
    }
Recent Random Colors