Random Color Generator

#ed4820 Color

Color Codes
Hex Code #ed4820
RGB Code rgb(237, 72, 32)
HSL Code hsl(12, 85%, 53%)

#ed4820 Color Syntax

rgb()

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

 main {
    background-color: rgb(237, 72, 32);
   }

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(12, 85%, 53%);
  }

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

RGB Code Hex Code Preview
rgb(237, 72, 32, 10%) #ed48201a  
rgb(237, 72, 32, 20%) #ed482033  
rgb(237, 72, 32, 40%) #ed48204C  
rgb(237, 72, 32, 60%) #ed482099  
rgb(237, 72, 32, 80%) #ed4820CC  
rgb(237, 72, 32, 100%) #ed4820FF  

Saturated and desaturated colors of #ed4820

HSL Code Preview
hsl(12, 10%, 53%)  
hsl(12, 20%, 53%)  
hsl(12, 40%, 53%)  
hsl(12, 60%, 53%)  
hsl(12, 80%, 53%)  
hsl(12, 100%, 53%)  

#ed4820 Color Usage In CSS

 body {
    color: #ed4820;
    }
 p {
    color: rgb(237, 72, 32);
    }
 header {
    border-bottom:1px solid #ed4820;
    }
Recent Random Colors