Random Color Generator

#bcc0a0 Color

Color Codes
Hex Code #bcc0a0
RGB Code rgb(188, 192, 160)
HSL Code hsl(68, 20%, 69%)

#bcc0a0 Color Syntax

rgb()

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

 main {
    background-color: rgb(188, 192, 160);
   }

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, 20%, 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 #bcc0a0

RGB Code Hex Code Preview
rgb(188, 192, 160, 10%) #bcc0a01a  
rgb(188, 192, 160, 20%) #bcc0a033  
rgb(188, 192, 160, 40%) #bcc0a04C  
rgb(188, 192, 160, 60%) #bcc0a099  
rgb(188, 192, 160, 80%) #bcc0a0CC  
rgb(188, 192, 160, 100%) #bcc0a0FF  

Saturated and desaturated colors of #bcc0a0

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

#bcc0a0 Color Usage In CSS

 body {
    color: #bcc0a0;
    }
 p {
    color: rgb(188, 192, 160);
    }
 header {
    border-bottom:1px solid #bcc0a0;
    }
Recent Random Colors