Random Color Generator

#AA875C Color

Color Codes
Hex Code #AA875C
RGB Code rgb(170, 135, 92)
HSL Code hsl(33, 31%, 51%)

#AA875C Color Syntax

rgb()

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

 main {
    background-color: rgb(170, 135, 92);
   }

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, 31%, 51%);
  }

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

RGB Code Hex Code Preview
rgb(170, 135, 92, 10%) #AA875C1a  
rgb(170, 135, 92, 20%) #AA875C33  
rgb(170, 135, 92, 40%) #AA875C4C  
rgb(170, 135, 92, 60%) #AA875C99  
rgb(170, 135, 92, 80%) #AA875CCC  
rgb(170, 135, 92, 100%) #AA875CFF  

Saturated and desaturated colors of #AA875C

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

#AA875C Color Usage In CSS

 body {
    color: #AA875C;
    }
 p {
    color: rgb(170, 135, 92);
    }
 header {
    border-bottom:1px solid #AA875C;
    }
Recent Random Colors