Random Color Generator

#52ef54 Color

Color Codes
Hex Code #52ef54
RGB Code rgb(82, 239, 84)
HSL Code hsl(121, 83%, 63%)

#52ef54 Color Syntax

rgb()

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

 main {
    background-color: rgb(82, 239, 84);
   }

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(121, 83%, 63%);
  }

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

RGB Code Hex Code Preview
rgb(82, 239, 84, 10%) #52ef541a  
rgb(82, 239, 84, 20%) #52ef5433  
rgb(82, 239, 84, 40%) #52ef544C  
rgb(82, 239, 84, 60%) #52ef5499  
rgb(82, 239, 84, 80%) #52ef54CC  
rgb(82, 239, 84, 100%) #52ef54FF  

Saturated and desaturated colors of #52ef54

HSL Code Preview
hsl(121, 10%, 63%)  
hsl(121, 20%, 63%)  
hsl(121, 40%, 63%)  
hsl(121, 60%, 63%)  
hsl(121, 80%, 63%)  
hsl(121, 100%, 63%)  

#52ef54 Color Usage In CSS

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