Random Color Generator

#8a7d1e Color

Color Codes
Hex Code #8a7d1e
RGB Code rgb(138, 125, 30)
HSL Code hsl(53, 64%, 33%)

#8a7d1e Color Syntax

rgb()

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

 main {
    background-color: rgb(138, 125, 30);
   }

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(53, 64%, 33%);
  }

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

RGB Code Hex Code Preview
rgb(138, 125, 30, 10%) #8a7d1e1a  
rgb(138, 125, 30, 20%) #8a7d1e33  
rgb(138, 125, 30, 40%) #8a7d1e4C  
rgb(138, 125, 30, 60%) #8a7d1e99  
rgb(138, 125, 30, 80%) #8a7d1eCC  
rgb(138, 125, 30, 100%) #8a7d1eFF  

Saturated and desaturated colors of #8a7d1e

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

#8a7d1e Color Usage In CSS

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