Random Color Generator

#9c6f37 Color

Color Codes
Hex Code #9c6f37
RGB Code rgb(156, 111, 55)
HSL Code hsl(33, 48%, 41%)

#9c6f37 Color Syntax

rgb()

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

 main {
    background-color: rgb(156, 111, 55);
   }

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(33, 48%, 41%);
  }

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

RGB Code Hex Code Preview
rgb(156, 111, 55, 10%) #9c6f371a  
rgb(156, 111, 55, 20%) #9c6f3733  
rgb(156, 111, 55, 40%) #9c6f374C  
rgb(156, 111, 55, 60%) #9c6f3799  
rgb(156, 111, 55, 80%) #9c6f37CC  
rgb(156, 111, 55, 100%) #9c6f37FF  

Saturated and desaturated colors of #9c6f37

HSL Code Preview
hsl(33, 10%, 41%)  
hsl(33, 20%, 41%)  
hsl(33, 40%, 41%)  
hsl(33, 60%, 41%)  
hsl(33, 80%, 41%)  
hsl(33, 100%, 41%)  

#9c6f37 Color Usage In CSS

 body {
    color: #9c6f37;
    }
 p {
    color: rgb(156, 111, 55);
    }
 header {
    border-bottom:1px solid #9c6f37;
    }
Recent Random Colors