Random Color Generator

#85c6bd Color

Color Codes
Hex Code #85c6bd
RGB Code rgb(133, 198, 189)
HSL Code hsl(172, 36%, 65%)

#85c6bd Color Syntax

rgb()

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

 main {
    background-color: rgb(133, 198, 189);
   }

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(172, 36%, 65%);
  }

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

RGB Code Hex Code Preview
rgb(133, 198, 189, 10%) #85c6bd1a  
rgb(133, 198, 189, 20%) #85c6bd33  
rgb(133, 198, 189, 40%) #85c6bd4C  
rgb(133, 198, 189, 60%) #85c6bd99  
rgb(133, 198, 189, 80%) #85c6bdCC  
rgb(133, 198, 189, 100%) #85c6bdFF  

Saturated and desaturated colors of #85c6bd

HSL Code Preview
hsl(172, 10%, 65%)  
hsl(172, 20%, 65%)  
hsl(172, 40%, 65%)  
hsl(172, 60%, 65%)  
hsl(172, 80%, 65%)  
hsl(172, 100%, 65%)  

#85c6bd Color Usage In CSS

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