Random Color Generator

#85bfce Color

Color Codes
Hex Code #85bfce
RGB Code rgb(133, 191, 206)
HSL Code hsl(192, 43%, 66%)

#85bfce Color Syntax

rgb()

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

 main {
    background-color: rgb(133, 191, 206);
   }

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, 43%, 66%);
  }

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

RGB Code Hex Code Preview
rgb(133, 191, 206, 10%) #85bfce1a  
rgb(133, 191, 206, 20%) #85bfce33  
rgb(133, 191, 206, 40%) #85bfce4C  
rgb(133, 191, 206, 60%) #85bfce99  
rgb(133, 191, 206, 80%) #85bfceCC  
rgb(133, 191, 206, 100%) #85bfceFF  

Saturated and desaturated colors of #85bfce

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

#85bfce Color Usage In CSS

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