Random Color Generator

#aa0820 Color

Color Codes
Hex Code #aa0820
RGB Code rgb(170, 08, 32)
HSL Code hsl(351, 91%, 35%)

#aa0820 Color Syntax

rgb()

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

 main {
    background-color: rgb(170, 08, 32);
   }

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(351, 91%, 35%);
  }

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

RGB Code Hex Code Preview
rgb(170, 08, 32, 10%) #aa08201a  
rgb(170, 08, 32, 20%) #aa082033  
rgb(170, 08, 32, 40%) #aa08204C  
rgb(170, 08, 32, 60%) #aa082099  
rgb(170, 08, 32, 80%) #aa0820CC  
rgb(170, 08, 32, 100%) #aa0820FF  

Saturated and desaturated colors of #aa0820

HSL Code Preview
hsl(351, 10%, 35%)  
hsl(351, 20%, 35%)  
hsl(351, 40%, 35%)  
hsl(351, 60%, 35%)  
hsl(351, 80%, 35%)  
hsl(351, 100%, 35%)  

#aa0820 Color Usage In CSS

 body {
    color: #aa0820;
    }
 p {
    color: rgb(170, 08, 32);
    }
 header {
    border-bottom:1px solid #aa0820;
    }
Recent Random Colors