Random Color Generator

#8a7a4c Color

Color Codes
Hex Code #8a7a4c
RGB Code rgb(138, 122, 76)
HSL Code hsl(45, 29%, 42%)

#8a7a4c Color Syntax

rgb()

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

 main {
    background-color: rgb(138, 122, 76);
   }

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(45, 29%, 42%);
  }

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 #8a7a4c

RGB Code Hex Code Preview
rgb(138, 122, 76, 10%) #8a7a4c1a  
rgb(138, 122, 76, 20%) #8a7a4c33  
rgb(138, 122, 76, 40%) #8a7a4c4C  
rgb(138, 122, 76, 60%) #8a7a4c99  
rgb(138, 122, 76, 80%) #8a7a4cCC  
rgb(138, 122, 76, 100%) #8a7a4cFF  

Saturated and desaturated colors of #8a7a4c

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

#8a7a4c Color Usage In CSS

 body {
    color: #8a7a4c;
    }
 p {
    color: rgb(138, 122, 76);
    }
 header {
    border-bottom:1px solid #8a7a4c;
    }
Recent Random Colors