Random Color Generator

#bbc28d Color

Color Codes
Hex Code #bbc28d
RGB Code rgb(187, 194, 141)
HSL Code hsl(68, 30%, 66%)

#bbc28d Color Syntax

rgb()

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

 main {
    background-color: rgb(187, 194, 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(68, 30%, 66%);
  }

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

RGB Code Hex Code Preview
rgb(187, 194, 141, 10%) #bbc28d1a  
rgb(187, 194, 141, 20%) #bbc28d33  
rgb(187, 194, 141, 40%) #bbc28d4C  
rgb(187, 194, 141, 60%) #bbc28d99  
rgb(187, 194, 141, 80%) #bbc28dCC  
rgb(187, 194, 141, 100%) #bbc28dFF  

Saturated and desaturated colors of #bbc28d

HSL Code Preview
hsl(68, 10%, 66%)  
hsl(68, 20%, 66%)  
hsl(68, 40%, 66%)  
hsl(68, 60%, 66%)  
hsl(68, 80%, 66%)  
hsl(68, 100%, 66%)  

#bbc28d Color Usage In CSS

 body {
    color: #bbc28d;
    }
 p {
    color: rgb(187, 194, 141);
    }
 header {
    border-bottom:1px solid #bbc28d;
    }
Recent Random Colors