Random Color Generator

#eb7608 Color

Color Codes
Hex Code #eb7608
RGB Code rgb(235, 118, 08)
HSL Code hsl(29, 93%, 48%)

#eb7608 Color Syntax

rgb()

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

 main {
    background-color: rgb(235, 118, 08);
   }

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(29, 93%, 48%);
  }

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

RGB Code Hex Code Preview
rgb(235, 118, 08, 10%) #eb76081a  
rgb(235, 118, 08, 20%) #eb760833  
rgb(235, 118, 08, 40%) #eb76084C  
rgb(235, 118, 08, 60%) #eb760899  
rgb(235, 118, 08, 80%) #eb7608CC  
rgb(235, 118, 08, 100%) #eb7608FF  

Saturated and desaturated colors of #eb7608

HSL Code Preview
hsl(29, 10%, 48%)  
hsl(29, 20%, 48%)  
hsl(29, 40%, 48%)  
hsl(29, 60%, 48%)  
hsl(29, 80%, 48%)  
hsl(29, 100%, 48%)  

#eb7608 Color Usage In CSS

 body {
    color: #eb7608;
    }
 p {
    color: rgb(235, 118, 08);
    }
 header {
    border-bottom:1px solid #eb7608;
    }
Recent Random Colors