Random Color Generator

#bcd050 Color

Color Codes
Hex Code #bcd050
RGB Code rgb(188, 208, 80)
HSL Code hsl(69, 58%, 56%)

#bcd050 Color Syntax

rgb()

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

 main {
    background-color: rgb(188, 208, 80);
   }

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(69, 58%, 56%);
  }

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

RGB Code Hex Code Preview
rgb(188, 208, 80, 10%) #bcd0501a  
rgb(188, 208, 80, 20%) #bcd05033  
rgb(188, 208, 80, 40%) #bcd0504C  
rgb(188, 208, 80, 60%) #bcd05099  
rgb(188, 208, 80, 80%) #bcd050CC  
rgb(188, 208, 80, 100%) #bcd050FF  

Saturated and desaturated colors of #bcd050

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

#bcd050 Color Usage In CSS

 body {
    color: #bcd050;
    }
 p {
    color: rgb(188, 208, 80);
    }
 header {
    border-bottom:1px solid #bcd050;
    }
Recent Random Colors