Random Color Generator

#b1b68d Color

Color Codes
Hex Code #b1b68d
RGB Code rgb(177, 182, 141)
HSL Code hsl(67, 22%, 63%)

#b1b68d Color Syntax

rgb()

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

 main {
    background-color: rgb(177, 182, 141);
   }

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(67, 22%, 63%);
  }

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

RGB Code Hex Code Preview
rgb(177, 182, 141, 10%) #b1b68d1a  
rgb(177, 182, 141, 20%) #b1b68d33  
rgb(177, 182, 141, 40%) #b1b68d4C  
rgb(177, 182, 141, 60%) #b1b68d99  
rgb(177, 182, 141, 80%) #b1b68dCC  
rgb(177, 182, 141, 100%) #b1b68dFF  

Saturated and desaturated colors of #b1b68d

HSL Code Preview
hsl(67, 10%, 63%)  
hsl(67, 20%, 63%)  
hsl(67, 40%, 63%)  
hsl(67, 60%, 63%)  
hsl(67, 80%, 63%)  
hsl(67, 100%, 63%)  

#b1b68d Color Usage In CSS

 body {
    color: #b1b68d;
    }
 p {
    color: rgb(177, 182, 141);
    }
 header {
    border-bottom:1px solid #b1b68d;
    }
Recent Random Colors