Random Color Generator

#9f9e4d Color

Color Codes
Hex Code #9f9e4d
RGB Code rgb(159, 158, 77)
HSL Code hsl(59, 35%, 46%)

#9f9e4d Color Syntax

rgb()

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

 main {
    background-color: rgb(159, 158, 77);
   }

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(59, 35%, 46%);
  }

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

RGB Code Hex Code Preview
rgb(159, 158, 77, 10%) #9f9e4d1a  
rgb(159, 158, 77, 20%) #9f9e4d33  
rgb(159, 158, 77, 40%) #9f9e4d4C  
rgb(159, 158, 77, 60%) #9f9e4d99  
rgb(159, 158, 77, 80%) #9f9e4dCC  
rgb(159, 158, 77, 100%) #9f9e4dFF  

Saturated and desaturated colors of #9f9e4d

HSL Code Preview
hsl(59, 10%, 46%)  
hsl(59, 20%, 46%)  
hsl(59, 40%, 46%)  
hsl(59, 60%, 46%)  
hsl(59, 80%, 46%)  
hsl(59, 100%, 46%)  

#9f9e4d Color Usage In CSS

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