Random Color Generator

#52d8a0 Color

Color Codes
Hex Code #52d8a0
RGB Code rgb(82, 216, 160)
HSL Code hsl(155, 63%, 58%)

#52d8a0 Color Syntax

rgb()

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

 main {
    background-color: rgb(82, 216, 160);
   }

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(155, 63%, 58%);
  }

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

RGB Code Hex Code Preview
rgb(82, 216, 160, 10%) #52d8a01a  
rgb(82, 216, 160, 20%) #52d8a033  
rgb(82, 216, 160, 40%) #52d8a04C  
rgb(82, 216, 160, 60%) #52d8a099  
rgb(82, 216, 160, 80%) #52d8a0CC  
rgb(82, 216, 160, 100%) #52d8a0FF  

Saturated and desaturated colors of #52d8a0

HSL Code Preview
hsl(155, 10%, 58%)  
hsl(155, 20%, 58%)  
hsl(155, 40%, 58%)  
hsl(155, 60%, 58%)  
hsl(155, 80%, 58%)  
hsl(155, 100%, 58%)  

#52d8a0 Color Usage In CSS

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