Random Color Generator

#aa0636 Color

Color Codes
Hex Code #aa0636
RGB Code rgb(170, 06, 54)
HSL Code hsl(342, 93%, 35%)

#aa0636 Color Syntax

rgb()

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

 main {
    background-color: rgb(170, 06, 54);
   }

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(342, 93%, 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 #aa0636

RGB Code Hex Code Preview
rgb(170, 06, 54, 10%) #aa06361a  
rgb(170, 06, 54, 20%) #aa063633  
rgb(170, 06, 54, 40%) #aa06364C  
rgb(170, 06, 54, 60%) #aa063699  
rgb(170, 06, 54, 80%) #aa0636CC  
rgb(170, 06, 54, 100%) #aa0636FF  

Saturated and desaturated colors of #aa0636

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

#aa0636 Color Usage In CSS

 body {
    color: #aa0636;
    }
 p {
    color: rgb(170, 06, 54);
    }
 header {
    border-bottom:1px solid #aa0636;
    }
Recent Random Colors