Random Color Generator

#a8aae6 Color

Color Codes
Hex Code #a8aae6
RGB Code rgb(168, 170, 230)
HSL Code hsl(238, 55%, 78%)

#a8aae6 Color Syntax

rgb()

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

 main {
    background-color: rgb(168, 170, 230);
   }

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(238, 55%, 78%);
  }

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

RGB Code Hex Code Preview
rgb(168, 170, 230, 10%) #a8aae61a  
rgb(168, 170, 230, 20%) #a8aae633  
rgb(168, 170, 230, 40%) #a8aae64C  
rgb(168, 170, 230, 60%) #a8aae699  
rgb(168, 170, 230, 80%) #a8aae6CC  
rgb(168, 170, 230, 100%) #a8aae6FF  

Saturated and desaturated colors of #a8aae6

HSL Code Preview
hsl(238, 10%, 78%)  
hsl(238, 20%, 78%)  
hsl(238, 40%, 78%)  
hsl(238, 60%, 78%)  
hsl(238, 80%, 78%)  
hsl(238, 100%, 78%)  

#a8aae6 Color Usage In CSS

 body {
    color: #a8aae6;
    }
 p {
    color: rgb(168, 170, 230);
    }
 header {
    border-bottom:1px solid #a8aae6;
    }
Recent Random Colors