Random Color Generator

#52cbe9 Color

Color Codes
Hex Code #52cbe9
RGB Code rgb(82, 203, 233)
HSL Code hsl(192, 77%, 62%)

#52cbe9 Color Syntax

rgb()

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

 main {
    background-color: rgb(82, 203, 233);
   }

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(192, 77%, 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 #52cbe9

RGB Code Hex Code Preview
rgb(82, 203, 233, 10%) #52cbe91a  
rgb(82, 203, 233, 20%) #52cbe933  
rgb(82, 203, 233, 40%) #52cbe94C  
rgb(82, 203, 233, 60%) #52cbe999  
rgb(82, 203, 233, 80%) #52cbe9CC  
rgb(82, 203, 233, 100%) #52cbe9FF  

Saturated and desaturated colors of #52cbe9

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

#52cbe9 Color Usage In CSS

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