Random Color Generator

#b99320 Color

Color Codes
Hex Code #b99320
RGB Code rgb(185, 147, 32)
HSL Code hsl(45, 71%, 43%)

#b99320 Color Syntax

rgb()

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

 main {
    background-color: rgb(185, 147, 32);
   }

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(45, 71%, 43%);
  }

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

RGB Code Hex Code Preview
rgb(185, 147, 32, 10%) #b993201a  
rgb(185, 147, 32, 20%) #b9932033  
rgb(185, 147, 32, 40%) #b993204C  
rgb(185, 147, 32, 60%) #b9932099  
rgb(185, 147, 32, 80%) #b99320CC  
rgb(185, 147, 32, 100%) #b99320FF  

Saturated and desaturated colors of #b99320

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

#b99320 Color Usage In CSS

 body {
    color: #b99320;
    }
 p {
    color: rgb(185, 147, 32);
    }
 header {
    border-bottom:1px solid #b99320;
    }
Recent Random Colors