Random Color Generator

#82dbdc Color

Color Codes
Hex Code #82dbdc
RGB Code rgb(130, 219, 220)
HSL Code hsl(181, 56%, 69%)

#82dbdc Color Syntax

rgb()

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

 main {
    background-color: rgb(130, 219, 220);
   }

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(181, 56%, 69%);
  }

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 #82dbdc

RGB Code Hex Code Preview
rgb(130, 219, 220, 10%) #82dbdc1a  
rgb(130, 219, 220, 20%) #82dbdc33  
rgb(130, 219, 220, 40%) #82dbdc4C  
rgb(130, 219, 220, 60%) #82dbdc99  
rgb(130, 219, 220, 80%) #82dbdcCC  
rgb(130, 219, 220, 100%) #82dbdcFF  

Saturated and desaturated colors of #82dbdc

HSL Code Preview
hsl(181, 10%, 69%)  
hsl(181, 20%, 69%)  
hsl(181, 40%, 69%)  
hsl(181, 60%, 69%)  
hsl(181, 80%, 69%)  
hsl(181, 100%, 69%)  

#82dbdc Color Usage In CSS

 body {
    color: #82dbdc;
    }
 p {
    color: rgb(130, 219, 220);
    }
 header {
    border-bottom:1px solid #82dbdc;
    }
Recent Random Colors