Random Color Generator

#9a6529 Color

Color Codes
Hex Code #9a6529
RGB Code rgb(154, 101, 41)
HSL Code hsl(32, 58%, 38%)

#9a6529 Color Syntax

rgb()

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

 main {
    background-color: rgb(154, 101, 41);
   }

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(32, 58%, 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 #9a6529

RGB Code Hex Code Preview
rgb(154, 101, 41, 10%) #9a65291a  
rgb(154, 101, 41, 20%) #9a652933  
rgb(154, 101, 41, 40%) #9a65294C  
rgb(154, 101, 41, 60%) #9a652999  
rgb(154, 101, 41, 80%) #9a6529CC  
rgb(154, 101, 41, 100%) #9a6529FF  

Saturated and desaturated colors of #9a6529

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

#9a6529 Color Usage In CSS

 body {
    color: #9a6529;
    }
 p {
    color: rgb(154, 101, 41);
    }
 header {
    border-bottom:1px solid #9a6529;
    }
Recent Random Colors