Random Color Generator

#85c4de Color

Color Codes
Hex Code #85c4de
RGB Code rgb(133, 196, 222)
HSL Code hsl(198, 57%, 70%)

#85c4de Color Syntax

rgb()

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

 main {
    background-color: rgb(133, 196, 222);
   }

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(198, 57%, 70%);
  }

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

RGB Code Hex Code Preview
rgb(133, 196, 222, 10%) #85c4de1a  
rgb(133, 196, 222, 20%) #85c4de33  
rgb(133, 196, 222, 40%) #85c4de4C  
rgb(133, 196, 222, 60%) #85c4de99  
rgb(133, 196, 222, 80%) #85c4deCC  
rgb(133, 196, 222, 100%) #85c4deFF  

Saturated and desaturated colors of #85c4de

HSL Code Preview
hsl(198, 10%, 70%)  
hsl(198, 20%, 70%)  
hsl(198, 40%, 70%)  
hsl(198, 60%, 70%)  
hsl(198, 80%, 70%)  
hsl(198, 100%, 70%)  

#85c4de Color Usage In CSS

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