Random Color Generator

#bcbd80 Color

Color Codes
Hex Code #bcbd80
RGB Code rgb(188, 189, 128)
HSL Code hsl(61, 32%, 62%)

#bcbd80 Color Syntax

rgb()

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

 main {
    background-color: rgb(188, 189, 128);
   }

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(61, 32%, 62%);
  }

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

RGB Code Hex Code Preview
rgb(188, 189, 128, 10%) #bcbd801a  
rgb(188, 189, 128, 20%) #bcbd8033  
rgb(188, 189, 128, 40%) #bcbd804C  
rgb(188, 189, 128, 60%) #bcbd8099  
rgb(188, 189, 128, 80%) #bcbd80CC  
rgb(188, 189, 128, 100%) #bcbd80FF  

Saturated and desaturated colors of #bcbd80

HSL Code Preview
hsl(61, 10%, 62%)  
hsl(61, 20%, 62%)  
hsl(61, 40%, 62%)  
hsl(61, 60%, 62%)  
hsl(61, 80%, 62%)  
hsl(61, 100%, 62%)  

#bcbd80 Color Usage In CSS

 body {
    color: #bcbd80;
    }
 p {
    color: rgb(188, 189, 128);
    }
 header {
    border-bottom:1px solid #bcbd80;
    }
Recent Random Colors