Random Color Generator

#52d40c Color

Color Codes
Hex Code #52d40c
RGB Code rgb(82, 212, 12)
HSL Code hsl(99, 89%, 44%)

#52d40c Color Syntax

rgb()

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

 main {
    background-color: rgb(82, 212, 12);
   }

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(99, 89%, 44%);
  }

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 #52d40c

RGB Code Hex Code Preview
rgb(82, 212, 12, 10%) #52d40c1a  
rgb(82, 212, 12, 20%) #52d40c33  
rgb(82, 212, 12, 40%) #52d40c4C  
rgb(82, 212, 12, 60%) #52d40c99  
rgb(82, 212, 12, 80%) #52d40cCC  
rgb(82, 212, 12, 100%) #52d40cFF  

Saturated and desaturated colors of #52d40c

HSL Code Preview
hsl(99, 10%, 44%)  
hsl(99, 20%, 44%)  
hsl(99, 40%, 44%)  
hsl(99, 60%, 44%)  
hsl(99, 80%, 44%)  
hsl(99, 100%, 44%)  

#52d40c Color Usage In CSS

 body {
    color: #52d40c;
    }
 p {
    color: rgb(82, 212, 12);
    }
 header {
    border-bottom:1px solid #52d40c;
    }
Recent Random Colors