Random Color Generator

#ae9ac2 Color

Color Codes
Hex Code #ae9ac2
RGB Code rgb(174, 154, 194)
HSL Code hsl(270, 25%, 68%)

#ae9ac2 Color Syntax

rgb()

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

 main {
    background-color: rgb(174, 154, 194);
   }

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(270, 25%, 68%);
  }

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

RGB Code Hex Code Preview
rgb(174, 154, 194, 10%) #ae9ac21a  
rgb(174, 154, 194, 20%) #ae9ac233  
rgb(174, 154, 194, 40%) #ae9ac24C  
rgb(174, 154, 194, 60%) #ae9ac299  
rgb(174, 154, 194, 80%) #ae9ac2CC  
rgb(174, 154, 194, 100%) #ae9ac2FF  

Saturated and desaturated colors of #ae9ac2

HSL Code Preview
hsl(270, 10%, 68%)  
hsl(270, 20%, 68%)  
hsl(270, 40%, 68%)  
hsl(270, 60%, 68%)  
hsl(270, 80%, 68%)  
hsl(270, 100%, 68%)  

#ae9ac2 Color Usage In CSS

 body {
    color: #ae9ac2;
    }
 p {
    color: rgb(174, 154, 194);
    }
 header {
    border-bottom:1px solid #ae9ac2;
    }
Recent Random Colors