Random Color Generator

#85bfef Color

Color Codes
Hex Code #85bfef
RGB Code rgb(133, 191, 239)
HSL Code hsl(207, 77%, 73%)

#85bfef Color Syntax

rgb()

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

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

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(207, 77%, 73%);
  }

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

RGB Code Hex Code Preview
rgb(133, 191, 239, 10%) #85bfef1a  
rgb(133, 191, 239, 20%) #85bfef33  
rgb(133, 191, 239, 40%) #85bfef4C  
rgb(133, 191, 239, 60%) #85bfef99  
rgb(133, 191, 239, 80%) #85bfefCC  
rgb(133, 191, 239, 100%) #85bfefFF  

Saturated and desaturated colors of #85bfef

HSL Code Preview
hsl(207, 10%, 73%)  
hsl(207, 20%, 73%)  
hsl(207, 40%, 73%)  
hsl(207, 60%, 73%)  
hsl(207, 80%, 73%)  
hsl(207, 100%, 73%)  

#85bfef Color Usage In CSS

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