Random Color Generator

#e45441 Color

Color Codes
Hex Code #e45441
RGB Code rgb(228, 84, 65)
HSL Code hsl(7, 75%, 57%)

#e45441 Color Syntax

rgb()

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

 main {
    background-color: rgb(228, 84, 65);
   }

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(7, 75%, 57%);
  }

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

RGB Code Hex Code Preview
rgb(228, 84, 65, 10%) #e454411a  
rgb(228, 84, 65, 20%) #e4544133  
rgb(228, 84, 65, 40%) #e454414C  
rgb(228, 84, 65, 60%) #e4544199  
rgb(228, 84, 65, 80%) #e45441CC  
rgb(228, 84, 65, 100%) #e45441FF  

Saturated and desaturated colors of #e45441

HSL Code Preview
hsl(7, 10%, 57%)  
hsl(7, 20%, 57%)  
hsl(7, 40%, 57%)  
hsl(7, 60%, 57%)  
hsl(7, 80%, 57%)  
hsl(7, 100%, 57%)  

#e45441 Color Usage In CSS

 body {
    color: #e45441;
    }
 p {
    color: rgb(228, 84, 65);
    }
 header {
    border-bottom:1px solid #e45441;
    }
Recent Random Colors