Random Color Generator

#52d6da Color

Color Codes
Hex Code #52d6da
RGB Code rgb(82, 214, 218)
HSL Code hsl(182, 65%, 59%)

#52d6da Color Syntax

rgb()

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

 main {
    background-color: rgb(82, 214, 218);
   }

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(182, 65%, 59%);
  }

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

RGB Code Hex Code Preview
rgb(82, 214, 218, 10%) #52d6da1a  
rgb(82, 214, 218, 20%) #52d6da33  
rgb(82, 214, 218, 40%) #52d6da4C  
rgb(82, 214, 218, 60%) #52d6da99  
rgb(82, 214, 218, 80%) #52d6daCC  
rgb(82, 214, 218, 100%) #52d6daFF  

Saturated and desaturated colors of #52d6da

HSL Code Preview
hsl(182, 10%, 59%)  
hsl(182, 20%, 59%)  
hsl(182, 40%, 59%)  
hsl(182, 60%, 59%)  
hsl(182, 80%, 59%)  
hsl(182, 100%, 59%)  

#52d6da Color Usage In CSS

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