Random Color Generator

#eb220d Color

Color Codes
Hex Code #eb220d
RGB Code rgb(235, 34, 13)
HSL Code hsl(6, 90%, 49%)

#eb220d Color Syntax

rgb()

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

 main {
    background-color: rgb(235, 34, 13);
   }

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, 90%, 49%);
  }

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

RGB Code Hex Code Preview
rgb(235, 34, 13, 10%) #eb220d1a  
rgb(235, 34, 13, 20%) #eb220d33  
rgb(235, 34, 13, 40%) #eb220d4C  
rgb(235, 34, 13, 60%) #eb220d99  
rgb(235, 34, 13, 80%) #eb220dCC  
rgb(235, 34, 13, 100%) #eb220dFF  

Saturated and desaturated colors of #eb220d

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

#eb220d Color Usage In CSS

 body {
    color: #eb220d;
    }
 p {
    color: rgb(235, 34, 13);
    }
 header {
    border-bottom:1px solid #eb220d;
    }
Recent Random Colors