Random Color Generator

#a4a8bb Color

Color Codes
Hex Code #a4a8bb
RGB Code rgb(164, 168, 187)
HSL Code hsl(230, 14%, 69%)

#a4a8bb Color Syntax

rgb()

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

 main {
    background-color: rgb(164, 168, 187);
   }

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(230, 14%, 69%);
  }

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

RGB Code Hex Code Preview
rgb(164, 168, 187, 10%) #a4a8bb1a  
rgb(164, 168, 187, 20%) #a4a8bb33  
rgb(164, 168, 187, 40%) #a4a8bb4C  
rgb(164, 168, 187, 60%) #a4a8bb99  
rgb(164, 168, 187, 80%) #a4a8bbCC  
rgb(164, 168, 187, 100%) #a4a8bbFF  

Saturated and desaturated colors of #a4a8bb

HSL Code Preview
hsl(230, 10%, 69%)  
hsl(230, 20%, 69%)  
hsl(230, 40%, 69%)  
hsl(230, 60%, 69%)  
hsl(230, 80%, 69%)  
hsl(230, 100%, 69%)  

#a4a8bb Color Usage In CSS

 body {
    color: #a4a8bb;
    }
 p {
    color: rgb(164, 168, 187);
    }
 header {
    border-bottom:1px solid #a4a8bb;
    }
Recent Random Colors