Random Color Generator

#85dbf6 Color

Color Codes
Hex Code #85dbf6
RGB Code rgb(133, 219, 246)
HSL Code hsl(194, 86%, 74%)

#85dbf6 Color Syntax

rgb()

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

 main {
    background-color: rgb(133, 219, 246);
   }

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(194, 86%, 74%);
  }

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

RGB Code Hex Code Preview
rgb(133, 219, 246, 10%) #85dbf61a  
rgb(133, 219, 246, 20%) #85dbf633  
rgb(133, 219, 246, 40%) #85dbf64C  
rgb(133, 219, 246, 60%) #85dbf699  
rgb(133, 219, 246, 80%) #85dbf6CC  
rgb(133, 219, 246, 100%) #85dbf6FF  

Saturated and desaturated colors of #85dbf6

HSL Code Preview
hsl(194, 10%, 74%)  
hsl(194, 20%, 74%)  
hsl(194, 40%, 74%)  
hsl(194, 60%, 74%)  
hsl(194, 80%, 74%)  
hsl(194, 100%, 74%)  

#85dbf6 Color Usage In CSS

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