Random Color Generator

#aa6113 Color

Color Codes
Hex Code #aa6113
RGB Code rgb(170, 97, 19)
HSL Code hsl(31, 80%, 37%)

#aa6113 Color Syntax

rgb()

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

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

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(31, 80%, 37%);
  }

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

RGB Code Hex Code Preview
rgb(170, 97, 19, 10%) #aa61131a  
rgb(170, 97, 19, 20%) #aa611333  
rgb(170, 97, 19, 40%) #aa61134C  
rgb(170, 97, 19, 60%) #aa611399  
rgb(170, 97, 19, 80%) #aa6113CC  
rgb(170, 97, 19, 100%) #aa6113FF  

Saturated and desaturated colors of #aa6113

HSL Code Preview
hsl(31, 10%, 37%)  
hsl(31, 20%, 37%)  
hsl(31, 40%, 37%)  
hsl(31, 60%, 37%)  
hsl(31, 80%, 37%)  
hsl(31, 100%, 37%)  

#aa6113 Color Usage In CSS

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