Random Color Generator

#b6c09f Color

Color Codes
Hex Code #b6c09f
RGB Code rgb(182, 192, 159)
HSL Code hsl(78, 21%, 69%)

#b6c09f Color Syntax

rgb()

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

 main {
    background-color: rgb(182, 192, 159);
   }

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(78, 21%, 69%);
  }

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

RGB Code Hex Code Preview
rgb(182, 192, 159, 10%) #b6c09f1a  
rgb(182, 192, 159, 20%) #b6c09f33  
rgb(182, 192, 159, 40%) #b6c09f4C  
rgb(182, 192, 159, 60%) #b6c09f99  
rgb(182, 192, 159, 80%) #b6c09fCC  
rgb(182, 192, 159, 100%) #b6c09fFF  

Saturated and desaturated colors of #b6c09f

HSL Code Preview
hsl(78, 10%, 69%)  
hsl(78, 20%, 69%)  
hsl(78, 40%, 69%)  
hsl(78, 60%, 69%)  
hsl(78, 80%, 69%)  
hsl(78, 100%, 69%)  

#b6c09f Color Usage In CSS

 body {
    color: #b6c09f;
    }
 p {
    color: rgb(182, 192, 159);
    }
 header {
    border-bottom:1px solid #b6c09f;
    }
Recent Random Colors