Random Color Generator

#b9d8ac Color

Color Codes
Hex Code #b9d8ac
RGB Code rgb(185, 216, 172)
HSL Code hsl(102, 36%, 76%)

#b9d8ac Color Syntax

rgb()

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

 main {
    background-color: rgb(185, 216, 172);
   }

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(102, 36%, 76%);
  }

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

RGB Code Hex Code Preview
rgb(185, 216, 172, 10%) #b9d8ac1a  
rgb(185, 216, 172, 20%) #b9d8ac33  
rgb(185, 216, 172, 40%) #b9d8ac4C  
rgb(185, 216, 172, 60%) #b9d8ac99  
rgb(185, 216, 172, 80%) #b9d8acCC  
rgb(185, 216, 172, 100%) #b9d8acFF  

Saturated and desaturated colors of #b9d8ac

HSL Code Preview
hsl(102, 10%, 76%)  
hsl(102, 20%, 76%)  
hsl(102, 40%, 76%)  
hsl(102, 60%, 76%)  
hsl(102, 80%, 76%)  
hsl(102, 100%, 76%)  

#b9d8ac Color Usage In CSS

 body {
    color: #b9d8ac;
    }
 p {
    color: rgb(185, 216, 172);
    }
 header {
    border-bottom:1px solid #b9d8ac;
    }
Recent Random Colors