Random Color Generator

#2cae4a Color

Color Codes
Hex Code #2cae4a
RGB Code rgb(44, 174, 74)
HSL Code hsl(134, 60%, 43%)

#2cae4a Color Syntax

rgb()

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

 main {
    background-color: rgb(44, 174, 74);
   }

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(134, 60%, 43%);
  }

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

RGB Code Hex Code Preview
rgb(44, 174, 74, 10%) #2cae4a1a  
rgb(44, 174, 74, 20%) #2cae4a33  
rgb(44, 174, 74, 40%) #2cae4a4C  
rgb(44, 174, 74, 60%) #2cae4a99  
rgb(44, 174, 74, 80%) #2cae4aCC  
rgb(44, 174, 74, 100%) #2cae4aFF  

Saturated and desaturated colors of #2cae4a

HSL Code Preview
hsl(134, 10%, 43%)  
hsl(134, 20%, 43%)  
hsl(134, 40%, 43%)  
hsl(134, 60%, 43%)  
hsl(134, 80%, 43%)  
hsl(134, 100%, 43%)  

#2cae4a Color Usage In CSS

 body {
    color: #2cae4a;
    }
 p {
    color: rgb(44, 174, 74);
    }
 header {
    border-bottom:1px solid #2cae4a;
    }
Recent Random Colors