Random Color Generator

#96655a Color

Color Codes
Hex Code #96655a
RGB Code rgb(150, 101, 90)
HSL Code hsl(11, 25%, 47%)

#96655a Color Syntax

rgb()

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

 main {
    background-color: rgb(150, 101, 90);
   }

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(11, 25%, 47%);
  }

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

RGB Code Hex Code Preview
rgb(150, 101, 90, 10%) #96655a1a  
rgb(150, 101, 90, 20%) #96655a33  
rgb(150, 101, 90, 40%) #96655a4C  
rgb(150, 101, 90, 60%) #96655a99  
rgb(150, 101, 90, 80%) #96655aCC  
rgb(150, 101, 90, 100%) #96655aFF  

Saturated and desaturated colors of #96655a

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

#96655a Color Usage In CSS

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