Random Color Generator

#b4cd15 Color

Color Codes
Hex Code #b4cd15
RGB Code rgb(180, 205, 21)
HSL Code hsl(68, 81%, 44%)

#b4cd15 Color Syntax

rgb()

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

 main {
    background-color: rgb(180, 205, 21);
   }

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, 81%, 44%);
  }

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

RGB Code Hex Code Preview
rgb(180, 205, 21, 10%) #b4cd151a  
rgb(180, 205, 21, 20%) #b4cd1533  
rgb(180, 205, 21, 40%) #b4cd154C  
rgb(180, 205, 21, 60%) #b4cd1599  
rgb(180, 205, 21, 80%) #b4cd15CC  
rgb(180, 205, 21, 100%) #b4cd15FF  

Saturated and desaturated colors of #b4cd15

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

#b4cd15 Color Usage In CSS

 body {
    color: #b4cd15;
    }
 p {
    color: rgb(180, 205, 21);
    }
 header {
    border-bottom:1px solid #b4cd15;
    }
Recent Random Colors