Random Color Generator

#aa8261 Color

Color Codes
Hex Code #aa8261
RGB Code rgb(170, 130, 97)
HSL Code hsl(27, 30%, 52%)

#aa8261 Color Syntax

rgb()

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

 main {
    background-color: rgb(170, 130, 97);
   }

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(27, 30%, 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 #aa8261

RGB Code Hex Code Preview
rgb(170, 130, 97, 10%) #aa82611a  
rgb(170, 130, 97, 20%) #aa826133  
rgb(170, 130, 97, 40%) #aa82614C  
rgb(170, 130, 97, 60%) #aa826199  
rgb(170, 130, 97, 80%) #aa8261CC  
rgb(170, 130, 97, 100%) #aa8261FF  

Saturated and desaturated colors of #aa8261

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

#aa8261 Color Usage In CSS

 body {
    color: #aa8261;
    }
 p {
    color: rgb(170, 130, 97);
    }
 header {
    border-bottom:1px solid #aa8261;
    }
Recent Random Colors