Random Color Generator

#85797c Color

Color Codes
Hex Code #85797c
RGB Code rgb(133, 121, 124)
HSL Code hsl(345, 5%, 50%)

#85797c Color Syntax

rgb()

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

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

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(345, 5%, 50%);
  }

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 #85797c

RGB Code Hex Code Preview
rgb(133, 121, 124, 10%) #85797c1a  
rgb(133, 121, 124, 20%) #85797c33  
rgb(133, 121, 124, 40%) #85797c4C  
rgb(133, 121, 124, 60%) #85797c99  
rgb(133, 121, 124, 80%) #85797cCC  
rgb(133, 121, 124, 100%) #85797cFF  

Saturated and desaturated colors of #85797c

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

#85797c Color Usage In CSS

 body {
    color: #85797c;
    }
 p {
    color: rgb(133, 121, 124);
    }
 header {
    border-bottom:1px solid #85797c;
    }
Recent Random Colors