Random Color Generator

#ae80f0 Color

Color Codes
Hex Code #ae80f0
RGB Code rgb(174, 128, 240)
HSL Code hsl(265, 79%, 72%)

#ae80f0 Color Syntax

rgb()

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

 main {
    background-color: rgb(174, 128, 240);
   }

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(265, 79%, 72%);
  }

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

RGB Code Hex Code Preview
rgb(174, 128, 240, 10%) #ae80f01a  
rgb(174, 128, 240, 20%) #ae80f033  
rgb(174, 128, 240, 40%) #ae80f04C  
rgb(174, 128, 240, 60%) #ae80f099  
rgb(174, 128, 240, 80%) #ae80f0CC  
rgb(174, 128, 240, 100%) #ae80f0FF  

Saturated and desaturated colors of #ae80f0

HSL Code Preview
hsl(265, 10%, 72%)  
hsl(265, 20%, 72%)  
hsl(265, 40%, 72%)  
hsl(265, 60%, 72%)  
hsl(265, 80%, 72%)  
hsl(265, 100%, 72%)  

#ae80f0 Color Usage In CSS

 body {
    color: #ae80f0;
    }
 p {
    color: rgb(174, 128, 240);
    }
 header {
    border-bottom:1px solid #ae80f0;
    }
Recent Random Colors