Random Color Generator

#87726c Color

Color Codes
Hex Code #87726c
RGB Code rgb(135, 114, 108)
HSL Code hsl(13, 11%, 48%)

#87726c Color Syntax

rgb()

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

 main {
    background-color: rgb(135, 114, 108);
   }

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(13, 11%, 48%);
  }

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

RGB Code Hex Code Preview
rgb(135, 114, 108, 10%) #87726c1a  
rgb(135, 114, 108, 20%) #87726c33  
rgb(135, 114, 108, 40%) #87726c4C  
rgb(135, 114, 108, 60%) #87726c99  
rgb(135, 114, 108, 80%) #87726cCC  
rgb(135, 114, 108, 100%) #87726cFF  

Saturated and desaturated colors of #87726c

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

#87726c Color Usage In CSS

 body {
    color: #87726c;
    }
 p {
    color: rgb(135, 114, 108);
    }
 header {
    border-bottom:1px solid #87726c;
    }
Recent Random Colors