Random Color Generator

#887c81 Color

Color Codes
Hex Code #887c81
RGB Code rgb(136, 124, 129)
HSL Code hsl(335, 5%, 51%)

#887c81 Color Syntax

rgb()

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

 main {
    background-color: rgb(136, 124, 129);
   }

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(335, 5%, 51%);
  }

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 #887c81

RGB Code Hex Code Preview
rgb(136, 124, 129, 10%) #887c811a  
rgb(136, 124, 129, 20%) #887c8133  
rgb(136, 124, 129, 40%) #887c814C  
rgb(136, 124, 129, 60%) #887c8199  
rgb(136, 124, 129, 80%) #887c81CC  
rgb(136, 124, 129, 100%) #887c81FF  

Saturated and desaturated colors of #887c81

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

#887c81 Color Usage In CSS

 body {
    color: #887c81;
    }
 p {
    color: rgb(136, 124, 129);
    }
 header {
    border-bottom:1px solid #887c81;
    }
Recent Random Colors