Random Color Generator

#ae2565 Color

Color Codes
Hex Code #ae2565
RGB Code rgb(174, 37, 101)
HSL Code hsl(332, 65%, 41%)

#ae2565 Color Syntax

rgb()

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

 main {
    background-color: rgb(174, 37, 101);
   }

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(332, 65%, 41%);
  }

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

RGB Code Hex Code Preview
rgb(174, 37, 101, 10%) #ae25651a  
rgb(174, 37, 101, 20%) #ae256533  
rgb(174, 37, 101, 40%) #ae25654C  
rgb(174, 37, 101, 60%) #ae256599  
rgb(174, 37, 101, 80%) #ae2565CC  
rgb(174, 37, 101, 100%) #ae2565FF  

Saturated and desaturated colors of #ae2565

HSL Code Preview
hsl(332, 10%, 41%)  
hsl(332, 20%, 41%)  
hsl(332, 40%, 41%)  
hsl(332, 60%, 41%)  
hsl(332, 80%, 41%)  
hsl(332, 100%, 41%)  

#ae2565 Color Usage In CSS

 body {
    color: #ae2565;
    }
 p {
    color: rgb(174, 37, 101);
    }
 header {
    border-bottom:1px solid #ae2565;
    }
Recent Random Colors