Random Color Generator

#2a8921 Color

Color Codes
Hex Code #2a8921
RGB Code rgb(42, 137, 33)
HSL Code hsl(115, 61%, 33%)

#2a8921 Color Syntax

rgb()

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

 main {
    background-color: rgb(42, 137, 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(115, 61%, 33%);
  }

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 #2a8921

RGB Code Hex Code Preview
rgb(42, 137, 33, 10%) #2a89211a  
rgb(42, 137, 33, 20%) #2a892133  
rgb(42, 137, 33, 40%) #2a89214C  
rgb(42, 137, 33, 60%) #2a892199  
rgb(42, 137, 33, 80%) #2a8921CC  
rgb(42, 137, 33, 100%) #2a8921FF  

Saturated and desaturated colors of #2a8921

HSL Code Preview
hsl(115, 10%, 33%)  
hsl(115, 20%, 33%)  
hsl(115, 40%, 33%)  
hsl(115, 60%, 33%)  
hsl(115, 80%, 33%)  
hsl(115, 100%, 33%)  

#2a8921 Color Usage In CSS

 body {
    color: #2a8921;
    }
 p {
    color: rgb(42, 137, 33);
    }
 header {
    border-bottom:1px solid #2a8921;
    }
Recent Random Colors