Random Color Generator

#ad875b Color

Color Codes
Hex Code #ad875b
RGB Code rgb(173, 135, 91)
HSL Code hsl(32, 33%, 52%)

#ad875b Color Syntax

rgb()

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

 main {
    background-color: rgb(173, 135, 91);
   }

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, 33%, 52%);
  }

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

RGB Code Hex Code Preview
rgb(173, 135, 91, 10%) #ad875b1a  
rgb(173, 135, 91, 20%) #ad875b33  
rgb(173, 135, 91, 40%) #ad875b4C  
rgb(173, 135, 91, 60%) #ad875b99  
rgb(173, 135, 91, 80%) #ad875bCC  
rgb(173, 135, 91, 100%) #ad875bFF  

Saturated and desaturated colors of #ad875b

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

#ad875b Color Usage In CSS

 body {
    color: #ad875b;
    }
 p {
    color: rgb(173, 135, 91);
    }
 header {
    border-bottom:1px solid #ad875b;
    }
Recent Random Colors