Random Color Generator

#b99732 Color

Color Codes
Hex Code #b99732
RGB Code rgb(185, 151, 50)
HSL Code hsl(45, 57%, 46%)

#b99732 Color Syntax

rgb()

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

 main {
    background-color: rgb(185, 151, 50);
   }

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, 57%, 46%);
  }

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

RGB Code Hex Code Preview
rgb(185, 151, 50, 10%) #b997321a  
rgb(185, 151, 50, 20%) #b9973233  
rgb(185, 151, 50, 40%) #b997324C  
rgb(185, 151, 50, 60%) #b9973299  
rgb(185, 151, 50, 80%) #b99732CC  
rgb(185, 151, 50, 100%) #b99732FF  

Saturated and desaturated colors of #b99732

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

#b99732 Color Usage In CSS

 body {
    color: #b99732;
    }
 p {
    color: rgb(185, 151, 50);
    }
 header {
    border-bottom:1px solid #b99732;
    }
Recent Random Colors