Random Color Generator

#eb300d Color

Color Codes
Hex Code #eb300d
RGB Code rgb(235, 48, 13)
HSL Code hsl(9, 90%, 49%)

#eb300d Color Syntax

rgb()

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

 main {
    background-color: rgb(235, 48, 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(9, 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 #eb300d

RGB Code Hex Code Preview
rgb(235, 48, 13, 10%) #eb300d1a  
rgb(235, 48, 13, 20%) #eb300d33  
rgb(235, 48, 13, 40%) #eb300d4C  
rgb(235, 48, 13, 60%) #eb300d99  
rgb(235, 48, 13, 80%) #eb300dCC  
rgb(235, 48, 13, 100%) #eb300dFF  

Saturated and desaturated colors of #eb300d

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

#eb300d Color Usage In CSS

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