Random Color Generator

#aa56c6 Color

Color Codes
Hex Code #aa56c6
RGB Code rgb(170, 86, 198)
HSL Code hsl(285, 50%, 56%)

#aa56c6 Color Syntax

rgb()

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

 main {
    background-color: rgb(170, 86, 198);
   }

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(285, 50%, 56%);
  }

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

RGB Code Hex Code Preview
rgb(170, 86, 198, 10%) #aa56c61a  
rgb(170, 86, 198, 20%) #aa56c633  
rgb(170, 86, 198, 40%) #aa56c64C  
rgb(170, 86, 198, 60%) #aa56c699  
rgb(170, 86, 198, 80%) #aa56c6CC  
rgb(170, 86, 198, 100%) #aa56c6FF  

Saturated and desaturated colors of #aa56c6

HSL Code Preview
hsl(285, 10%, 56%)  
hsl(285, 20%, 56%)  
hsl(285, 40%, 56%)  
hsl(285, 60%, 56%)  
hsl(285, 80%, 56%)  
hsl(285, 100%, 56%)  

#aa56c6 Color Usage In CSS

 body {
    color: #aa56c6;
    }
 p {
    color: rgb(170, 86, 198);
    }
 header {
    border-bottom:1px solid #aa56c6;
    }
Recent Random Colors