Random Color Generator

#52ec71 Color

Color Codes
Hex Code #52ec71
RGB Code rgb(82, 236, 113)
HSL Code hsl(132, 80%, 62%)

#52ec71 Color Syntax

rgb()

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

 main {
    background-color: rgb(82, 236, 113);
   }

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(132, 80%, 62%);
  }

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

RGB Code Hex Code Preview
rgb(82, 236, 113, 10%) #52ec711a  
rgb(82, 236, 113, 20%) #52ec7133  
rgb(82, 236, 113, 40%) #52ec714C  
rgb(82, 236, 113, 60%) #52ec7199  
rgb(82, 236, 113, 80%) #52ec71CC  
rgb(82, 236, 113, 100%) #52ec71FF  

Saturated and desaturated colors of #52ec71

HSL Code Preview
hsl(132, 10%, 62%)  
hsl(132, 20%, 62%)  
hsl(132, 40%, 62%)  
hsl(132, 60%, 62%)  
hsl(132, 80%, 62%)  
hsl(132, 100%, 62%)  

#52ec71 Color Usage In CSS

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