Random Color Generator

#b4e921 Color

Color Codes
Hex Code #b4e921
RGB Code rgb(180, 233, 33)
HSL Code hsl(76, 82%, 52%)

#b4e921 Color Syntax

rgb()

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

 main {
    background-color: rgb(180, 233, 33);
   }

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(76, 82%, 52%);
  }

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

RGB Code Hex Code Preview
rgb(180, 233, 33, 10%) #b4e9211a  
rgb(180, 233, 33, 20%) #b4e92133  
rgb(180, 233, 33, 40%) #b4e9214C  
rgb(180, 233, 33, 60%) #b4e92199  
rgb(180, 233, 33, 80%) #b4e921CC  
rgb(180, 233, 33, 100%) #b4e921FF  

Saturated and desaturated colors of #b4e921

HSL Code Preview
hsl(76, 10%, 52%)  
hsl(76, 20%, 52%)  
hsl(76, 40%, 52%)  
hsl(76, 60%, 52%)  
hsl(76, 80%, 52%)  
hsl(76, 100%, 52%)  

#b4e921 Color Usage In CSS

 body {
    color: #b4e921;
    }
 p {
    color: rgb(180, 233, 33);
    }
 header {
    border-bottom:1px solid #b4e921;
    }
Recent Random Colors