Random Color Generator

#ea2c17 Color

Color Codes
Hex Code #ea2c17
RGB Code rgb(234, 44, 23)
HSL Code hsl(6, 83%, 50%)

#ea2c17 Color Syntax

rgb()

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

 main {
    background-color: rgb(234, 44, 23);
   }

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(6, 83%, 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 #ea2c17

RGB Code Hex Code Preview
rgb(234, 44, 23, 10%) #ea2c171a  
rgb(234, 44, 23, 20%) #ea2c1733  
rgb(234, 44, 23, 40%) #ea2c174C  
rgb(234, 44, 23, 60%) #ea2c1799  
rgb(234, 44, 23, 80%) #ea2c17CC  
rgb(234, 44, 23, 100%) #ea2c17FF  

Saturated and desaturated colors of #ea2c17

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

#ea2c17 Color Usage In CSS

 body {
    color: #ea2c17;
    }
 p {
    color: rgb(234, 44, 23);
    }
 header {
    border-bottom:1px solid #ea2c17;
    }
Recent Random Colors