Random Color Generator

#b44804 Color

Color Codes
Hex Code #b44804
RGB Code rgb(180, 72, 04)
HSL Code hsl(23, 96%, 36%)

#b44804 Color Syntax

rgb()

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

 main {
    background-color: rgb(180, 72, 04);
   }

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(23, 96%, 36%);
  }

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

RGB Code Hex Code Preview
rgb(180, 72, 04, 10%) #b448041a  
rgb(180, 72, 04, 20%) #b4480433  
rgb(180, 72, 04, 40%) #b448044C  
rgb(180, 72, 04, 60%) #b4480499  
rgb(180, 72, 04, 80%) #b44804CC  
rgb(180, 72, 04, 100%) #b44804FF  

Saturated and desaturated colors of #b44804

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

#b44804 Color Usage In CSS

 body {
    color: #b44804;
    }
 p {
    color: rgb(180, 72, 04);
    }
 header {
    border-bottom:1px solid #b44804;
    }
Recent Random Colors