Random Color Generator

#52c19e Color

Color Codes
Hex Code #52c19e
RGB Code rgb(82, 193, 158)
HSL Code hsl(161, 47%, 54%)

#52c19e Color Syntax

rgb()

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

 main {
    background-color: rgb(82, 193, 158);
   }

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(161, 47%, 54%);
  }

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

RGB Code Hex Code Preview
rgb(82, 193, 158, 10%) #52c19e1a  
rgb(82, 193, 158, 20%) #52c19e33  
rgb(82, 193, 158, 40%) #52c19e4C  
rgb(82, 193, 158, 60%) #52c19e99  
rgb(82, 193, 158, 80%) #52c19eCC  
rgb(82, 193, 158, 100%) #52c19eFF  

Saturated and desaturated colors of #52c19e

HSL Code Preview
hsl(161, 10%, 54%)  
hsl(161, 20%, 54%)  
hsl(161, 40%, 54%)  
hsl(161, 60%, 54%)  
hsl(161, 80%, 54%)  
hsl(161, 100%, 54%)  

#52c19e Color Usage In CSS

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