Random Color Generator

#aa347d Color

Color Codes
Hex Code #aa347d
RGB Code rgb(170, 52, 125)
HSL Code hsl(323, 53%, 44%)

#aa347d Color Syntax

rgb()

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

 main {
    background-color: rgb(170, 52, 125);
   }

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(323, 53%, 44%);
  }

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

RGB Code Hex Code Preview
rgb(170, 52, 125, 10%) #aa347d1a  
rgb(170, 52, 125, 20%) #aa347d33  
rgb(170, 52, 125, 40%) #aa347d4C  
rgb(170, 52, 125, 60%) #aa347d99  
rgb(170, 52, 125, 80%) #aa347dCC  
rgb(170, 52, 125, 100%) #aa347dFF  

Saturated and desaturated colors of #aa347d

HSL Code Preview
hsl(323, 10%, 44%)  
hsl(323, 20%, 44%)  
hsl(323, 40%, 44%)  
hsl(323, 60%, 44%)  
hsl(323, 80%, 44%)  
hsl(323, 100%, 44%)  

#aa347d Color Usage In CSS

 body {
    color: #aa347d;
    }
 p {
    color: rgb(170, 52, 125);
    }
 header {
    border-bottom:1px solid #aa347d;
    }
Recent Random Colors