Random Color Generator

#e72a21 Color

Color Codes
Hex Code #e72a21
RGB Code rgb(231, 42, 33)
HSL Code hsl(3, 80%, 52%)

#e72a21 Color Syntax

rgb()

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

 main {
    background-color: rgb(231, 42, 33);
   }

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(3, 80%, 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 #e72a21

RGB Code Hex Code Preview
rgb(231, 42, 33, 10%) #e72a211a  
rgb(231, 42, 33, 20%) #e72a2133  
rgb(231, 42, 33, 40%) #e72a214C  
rgb(231, 42, 33, 60%) #e72a2199  
rgb(231, 42, 33, 80%) #e72a21CC  
rgb(231, 42, 33, 100%) #e72a21FF  

Saturated and desaturated colors of #e72a21

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

#e72a21 Color Usage In CSS

 body {
    color: #e72a21;
    }
 p {
    color: rgb(231, 42, 33);
    }
 header {
    border-bottom:1px solid #e72a21;
    }
Recent Random Colors