Random Color Generator

#a4a336 Color

Color Codes
Hex Code #a4a336
RGB Code rgb(164, 163, 54)
HSL Code hsl(59, 50%, 43%)

#a4a336 Color Syntax

rgb()

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

 main {
    background-color: rgb(164, 163, 54);
   }

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, 50%, 43%);
  }

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 #a4a336

RGB Code Hex Code Preview
rgb(164, 163, 54, 10%) #a4a3361a  
rgb(164, 163, 54, 20%) #a4a33633  
rgb(164, 163, 54, 40%) #a4a3364C  
rgb(164, 163, 54, 60%) #a4a33699  
rgb(164, 163, 54, 80%) #a4a336CC  
rgb(164, 163, 54, 100%) #a4a336FF  

Saturated and desaturated colors of #a4a336

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

#a4a336 Color Usage In CSS

 body {
    color: #a4a336;
    }
 p {
    color: rgb(164, 163, 54);
    }
 header {
    border-bottom:1px solid #a4a336;
    }
Recent Random Colors