Random Color Generator

#96854f Color

Color Codes
Hex Code #96854f
RGB Code rgb(150, 133, 79)
HSL Code hsl(46, 31%, 45%)

#96854f Color Syntax

rgb()

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

 main {
    background-color: rgb(150, 133, 79);
   }

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(46, 31%, 45%);
  }

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 #96854f

RGB Code Hex Code Preview
rgb(150, 133, 79, 10%) #96854f1a  
rgb(150, 133, 79, 20%) #96854f33  
rgb(150, 133, 79, 40%) #96854f4C  
rgb(150, 133, 79, 60%) #96854f99  
rgb(150, 133, 79, 80%) #96854fCC  
rgb(150, 133, 79, 100%) #96854fFF  

Saturated and desaturated colors of #96854f

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

#96854f Color Usage In CSS

 body {
    color: #96854f;
    }
 p {
    color: rgb(150, 133, 79);
    }
 header {
    border-bottom:1px solid #96854f;
    }
Recent Random Colors