Random Color Generator

#b2e860 Color

Color Codes
Hex Code #b2e860
RGB Code rgb(178, 232, 96)
HSL Code hsl(84, 75%, 64%)

#b2e860 Color Syntax

rgb()

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

 main {
    background-color: rgb(178, 232, 96);
   }

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(84, 75%, 64%);
  }

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

RGB Code Hex Code Preview
rgb(178, 232, 96, 10%) #b2e8601a  
rgb(178, 232, 96, 20%) #b2e86033  
rgb(178, 232, 96, 40%) #b2e8604C  
rgb(178, 232, 96, 60%) #b2e86099  
rgb(178, 232, 96, 80%) #b2e860CC  
rgb(178, 232, 96, 100%) #b2e860FF  

Saturated and desaturated colors of #b2e860

HSL Code Preview
hsl(84, 10%, 64%)  
hsl(84, 20%, 64%)  
hsl(84, 40%, 64%)  
hsl(84, 60%, 64%)  
hsl(84, 80%, 64%)  
hsl(84, 100%, 64%)  

#b2e860 Color Usage In CSS

 body {
    color: #b2e860;
    }
 p {
    color: rgb(178, 232, 96);
    }
 header {
    border-bottom:1px solid #b2e860;
    }
Recent Random Colors