Random Color Generator

#ad932c Color

Color Codes
Hex Code #ad932c
RGB Code rgb(173, 147, 44)
HSL Code hsl(48, 59%, 43%)

#ad932c Color Syntax

rgb()

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

 main {
    background-color: rgb(173, 147, 44);
   }

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(48, 59%, 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 #ad932c

RGB Code Hex Code Preview
rgb(173, 147, 44, 10%) #ad932c1a  
rgb(173, 147, 44, 20%) #ad932c33  
rgb(173, 147, 44, 40%) #ad932c4C  
rgb(173, 147, 44, 60%) #ad932c99  
rgb(173, 147, 44, 80%) #ad932cCC  
rgb(173, 147, 44, 100%) #ad932cFF  

Saturated and desaturated colors of #ad932c

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

#ad932c Color Usage In CSS

 body {
    color: #ad932c;
    }
 p {
    color: rgb(173, 147, 44);
    }
 header {
    border-bottom:1px solid #ad932c;
    }
Recent Random Colors