Random Color Generator

#9e9679 Color

Color Codes
Hex Code #9e9679
RGB Code rgb(158, 150, 121)
HSL Code hsl(47, 16%, 55%)

#9e9679 Color Syntax

rgb()

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

 main {
    background-color: rgb(158, 150, 121);
   }

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(47, 16%, 55%);
  }

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 #9e9679

RGB Code Hex Code Preview
rgb(158, 150, 121, 10%) #9e96791a  
rgb(158, 150, 121, 20%) #9e967933  
rgb(158, 150, 121, 40%) #9e96794C  
rgb(158, 150, 121, 60%) #9e967999  
rgb(158, 150, 121, 80%) #9e9679CC  
rgb(158, 150, 121, 100%) #9e9679FF  

Saturated and desaturated colors of #9e9679

HSL Code Preview
hsl(47, 10%, 55%)  
hsl(47, 20%, 55%)  
hsl(47, 40%, 55%)  
hsl(47, 60%, 55%)  
hsl(47, 80%, 55%)  
hsl(47, 100%, 55%)  

#9e9679 Color Usage In CSS

 body {
    color: #9e9679;
    }
 p {
    color: rgb(158, 150, 121);
    }
 header {
    border-bottom:1px solid #9e9679;
    }
Recent Random Colors