Random Color Generator

#b7a44d Color

Color Codes
Hex Code #b7a44d
RGB Code rgb(183, 164, 77)
HSL Code hsl(49, 42%, 51%)

#b7a44d Color Syntax

rgb()

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

 main {
    background-color: rgb(183, 164, 77);
   }

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(49, 42%, 51%);
  }

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

RGB Code Hex Code Preview
rgb(183, 164, 77, 10%) #b7a44d1a  
rgb(183, 164, 77, 20%) #b7a44d33  
rgb(183, 164, 77, 40%) #b7a44d4C  
rgb(183, 164, 77, 60%) #b7a44d99  
rgb(183, 164, 77, 80%) #b7a44dCC  
rgb(183, 164, 77, 100%) #b7a44dFF  

Saturated and desaturated colors of #b7a44d

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

#b7a44d Color Usage In CSS

 body {
    color: #b7a44d;
    }
 p {
    color: rgb(183, 164, 77);
    }
 header {
    border-bottom:1px solid #b7a44d;
    }
Recent Random Colors