Random Color Generator

#96952a Color

Color Codes
Hex Code #96952a
RGB Code rgb(150, 149, 42)
HSL Code hsl(59, 56%, 38%)

#96952a Color Syntax

rgb()

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

 main {
    background-color: rgb(150, 149, 42);
   }

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, 56%, 38%);
  }

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 #96952a

RGB Code Hex Code Preview
rgb(150, 149, 42, 10%) #96952a1a  
rgb(150, 149, 42, 20%) #96952a33  
rgb(150, 149, 42, 40%) #96952a4C  
rgb(150, 149, 42, 60%) #96952a99  
rgb(150, 149, 42, 80%) #96952aCC  
rgb(150, 149, 42, 100%) #96952aFF  

Saturated and desaturated colors of #96952a

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

#96952a Color Usage In CSS

 body {
    color: #96952a;
    }
 p {
    color: rgb(150, 149, 42);
    }
 header {
    border-bottom:1px solid #96952a;
    }
Recent Random Colors