Random Color Generator

#2ae53a Color

Color Codes
Hex Code #2ae53a
RGB Code rgb(42, 229, 58)
HSL Code hsl(125, 78%, 53%)

#2ae53a Color Syntax

rgb()

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

 main {
    background-color: rgb(42, 229, 58);
   }

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(125, 78%, 53%);
  }

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

RGB Code Hex Code Preview
rgb(42, 229, 58, 10%) #2ae53a1a  
rgb(42, 229, 58, 20%) #2ae53a33  
rgb(42, 229, 58, 40%) #2ae53a4C  
rgb(42, 229, 58, 60%) #2ae53a99  
rgb(42, 229, 58, 80%) #2ae53aCC  
rgb(42, 229, 58, 100%) #2ae53aFF  

Saturated and desaturated colors of #2ae53a

HSL Code Preview
hsl(125, 10%, 53%)  
hsl(125, 20%, 53%)  
hsl(125, 40%, 53%)  
hsl(125, 60%, 53%)  
hsl(125, 80%, 53%)  
hsl(125, 100%, 53%)  

#2ae53a Color Usage In CSS

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