Random Color Generator

#bcc201 Color

Color Codes
Hex Code #bcc201
RGB Code rgb(188, 194, 01)
HSL Code hsl(62, 99%, 38%)

#bcc201 Color Syntax

rgb()

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

 main {
    background-color: rgb(188, 194, 01);
   }

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(62, 99%, 38%);
  }

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

RGB Code Hex Code Preview
rgb(188, 194, 01, 10%) #bcc2011a  
rgb(188, 194, 01, 20%) #bcc20133  
rgb(188, 194, 01, 40%) #bcc2014C  
rgb(188, 194, 01, 60%) #bcc20199  
rgb(188, 194, 01, 80%) #bcc201CC  
rgb(188, 194, 01, 100%) #bcc201FF  

Saturated and desaturated colors of #bcc201

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

#bcc201 Color Usage In CSS

 body {
    color: #bcc201;
    }
 p {
    color: rgb(188, 194, 01);
    }
 header {
    border-bottom:1px solid #bcc201;
    }
Recent Random Colors