Random Color Generator

#85aeae Color

Color Codes
Hex Code #85aeae
RGB Code rgb(133, 174, 174)
HSL Code hsl(180, 20%, 60%)

#85aeae Color Syntax

rgb()

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

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

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(180, 20%, 60%);
  }

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

RGB Code Hex Code Preview
rgb(133, 174, 174, 10%) #85aeae1a  
rgb(133, 174, 174, 20%) #85aeae33  
rgb(133, 174, 174, 40%) #85aeae4C  
rgb(133, 174, 174, 60%) #85aeae99  
rgb(133, 174, 174, 80%) #85aeaeCC  
rgb(133, 174, 174, 100%) #85aeaeFF  

Saturated and desaturated colors of #85aeae

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

#85aeae Color Usage In CSS

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