Random Color Generator

#85d7e7 Color

Color Codes
Hex Code #85d7e7
RGB Code rgb(133, 215, 231)
HSL Code hsl(190, 67%, 71%)

#85d7e7 Color Syntax

rgb()

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

 main {
    background-color: rgb(133, 215, 231);
   }

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(190, 67%, 71%);
  }

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 #85d7e7

RGB Code Hex Code Preview
rgb(133, 215, 231, 10%) #85d7e71a  
rgb(133, 215, 231, 20%) #85d7e733  
rgb(133, 215, 231, 40%) #85d7e74C  
rgb(133, 215, 231, 60%) #85d7e799  
rgb(133, 215, 231, 80%) #85d7e7CC  
rgb(133, 215, 231, 100%) #85d7e7FF  

Saturated and desaturated colors of #85d7e7

HSL Code Preview
hsl(190, 10%, 71%)  
hsl(190, 20%, 71%)  
hsl(190, 40%, 71%)  
hsl(190, 60%, 71%)  
hsl(190, 80%, 71%)  
hsl(190, 100%, 71%)  

#85d7e7 Color Usage In CSS

 body {
    color: #85d7e7;
    }
 p {
    color: rgb(133, 215, 231);
    }
 header {
    border-bottom:1px solid #85d7e7;
    }
Recent Random Colors