Random Color Generator

#b1a77b Color

Color Codes
Hex Code #b1a77b
RGB Code rgb(177, 167, 123)
HSL Code hsl(49, 26%, 59%)

#b1a77b Color Syntax

rgb()

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

 main {
    background-color: rgb(177, 167, 123);
   }

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, 26%, 59%);
  }

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

RGB Code Hex Code Preview
rgb(177, 167, 123, 10%) #b1a77b1a  
rgb(177, 167, 123, 20%) #b1a77b33  
rgb(177, 167, 123, 40%) #b1a77b4C  
rgb(177, 167, 123, 60%) #b1a77b99  
rgb(177, 167, 123, 80%) #b1a77bCC  
rgb(177, 167, 123, 100%) #b1a77bFF  

Saturated and desaturated colors of #b1a77b

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

#b1a77b Color Usage In CSS

 body {
    color: #b1a77b;
    }
 p {
    color: rgb(177, 167, 123);
    }
 header {
    border-bottom:1px solid #b1a77b;
    }
Recent Random Colors