Random Color Generator

#bdc02f Color

Color Codes
Hex Code #bdc02f
RGB Code rgb(189, 192, 47)
HSL Code hsl(61, 61%, 47%)

#bdc02f Color Syntax

rgb()

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

 main {
    background-color: rgb(189, 192, 47);
   }

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, 61%, 47%);
  }

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

RGB Code Hex Code Preview
rgb(189, 192, 47, 10%) #bdc02f1a  
rgb(189, 192, 47, 20%) #bdc02f33  
rgb(189, 192, 47, 40%) #bdc02f4C  
rgb(189, 192, 47, 60%) #bdc02f99  
rgb(189, 192, 47, 80%) #bdc02fCC  
rgb(189, 192, 47, 100%) #bdc02fFF  

Saturated and desaturated colors of #bdc02f

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

#bdc02f Color Usage In CSS

 body {
    color: #bdc02f;
    }
 p {
    color: rgb(189, 192, 47);
    }
 header {
    border-bottom:1px solid #bdc02f;
    }
Recent Random Colors