Random Color Generator

#b8983c Color

Color Codes
Hex Code #b8983c
RGB Code rgb(184, 152, 60)
HSL Code hsl(45, 51%, 48%)

#b8983c Color Syntax

rgb()

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

 main {
    background-color: rgb(184, 152, 60);
   }

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, 51%, 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 #b8983c

RGB Code Hex Code Preview
rgb(184, 152, 60, 10%) #b8983c1a  
rgb(184, 152, 60, 20%) #b8983c33  
rgb(184, 152, 60, 40%) #b8983c4C  
rgb(184, 152, 60, 60%) #b8983c99  
rgb(184, 152, 60, 80%) #b8983cCC  
rgb(184, 152, 60, 100%) #b8983cFF  

Saturated and desaturated colors of #b8983c

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

#b8983c Color Usage In CSS

 body {
    color: #b8983c;
    }
 p {
    color: rgb(184, 152, 60);
    }
 header {
    border-bottom:1px solid #b8983c;
    }
Recent Random Colors