Random Color Generator

#d74d08 Color

Color Codes
Hex Code #d74d08
RGB Code rgb(215, 77, 08)
HSL Code hsl(20, 93%, 44%)

#d74d08 Color Syntax

rgb()

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

 main {
    background-color: rgb(215, 77, 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(20, 93%, 44%);
  }

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

RGB Code Hex Code Preview
rgb(215, 77, 08, 10%) #d74d081a  
rgb(215, 77, 08, 20%) #d74d0833  
rgb(215, 77, 08, 40%) #d74d084C  
rgb(215, 77, 08, 60%) #d74d0899  
rgb(215, 77, 08, 80%) #d74d08CC  
rgb(215, 77, 08, 100%) #d74d08FF  

Saturated and desaturated colors of #d74d08

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

#d74d08 Color Usage In CSS

 body {
    color: #d74d08;
    }
 p {
    color: rgb(215, 77, 08);
    }
 header {
    border-bottom:1px solid #d74d08;
    }
Recent Random Colors