Random Color Generator

#aa3c90 Color

Color Codes
Hex Code #aa3c90
RGB Code rgb(170, 60, 144)
HSL Code hsl(314, 48%, 45%)

#aa3c90 Color Syntax

rgb()

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

 main {
    background-color: rgb(170, 60, 144);
   }

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(314, 48%, 45%);
  }

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

RGB Code Hex Code Preview
rgb(170, 60, 144, 10%) #aa3c901a  
rgb(170, 60, 144, 20%) #aa3c9033  
rgb(170, 60, 144, 40%) #aa3c904C  
rgb(170, 60, 144, 60%) #aa3c9099  
rgb(170, 60, 144, 80%) #aa3c90CC  
rgb(170, 60, 144, 100%) #aa3c90FF  

Saturated and desaturated colors of #aa3c90

HSL Code Preview
hsl(314, 10%, 45%)  
hsl(314, 20%, 45%)  
hsl(314, 40%, 45%)  
hsl(314, 60%, 45%)  
hsl(314, 80%, 45%)  
hsl(314, 100%, 45%)  

#aa3c90 Color Usage In CSS

 body {
    color: #aa3c90;
    }
 p {
    color: rgb(170, 60, 144);
    }
 header {
    border-bottom:1px solid #aa3c90;
    }
Recent Random Colors