Random Color Generator

#85c0e1 Color

Color Codes
Hex Code #85c0e1
RGB Code rgb(133, 192, 225)
HSL Code hsl(202, 61%, 70%)

#85c0e1 Color Syntax

rgb()

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

 main {
    background-color: rgb(133, 192, 225);
   }

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(202, 61%, 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 #85c0e1

RGB Code Hex Code Preview
rgb(133, 192, 225, 10%) #85c0e11a  
rgb(133, 192, 225, 20%) #85c0e133  
rgb(133, 192, 225, 40%) #85c0e14C  
rgb(133, 192, 225, 60%) #85c0e199  
rgb(133, 192, 225, 80%) #85c0e1CC  
rgb(133, 192, 225, 100%) #85c0e1FF  

Saturated and desaturated colors of #85c0e1

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

#85c0e1 Color Usage In CSS

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