Random Color Generator

#8e97af Color

Color Codes
Hex Code #8e97af
RGB Code rgb(142, 151, 175)
HSL Code hsl(224, 17%, 62%)

#8e97af Color Syntax

rgb()

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

 main {
    background-color: rgb(142, 151, 175);
   }

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(224, 17%, 62%);
  }

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 #8e97af

RGB Code Hex Code Preview
rgb(142, 151, 175, 10%) #8e97af1a  
rgb(142, 151, 175, 20%) #8e97af33  
rgb(142, 151, 175, 40%) #8e97af4C  
rgb(142, 151, 175, 60%) #8e97af99  
rgb(142, 151, 175, 80%) #8e97afCC  
rgb(142, 151, 175, 100%) #8e97afFF  

Saturated and desaturated colors of #8e97af

HSL Code Preview
hsl(224, 10%, 62%)  
hsl(224, 20%, 62%)  
hsl(224, 40%, 62%)  
hsl(224, 60%, 62%)  
hsl(224, 80%, 62%)  
hsl(224, 100%, 62%)  

#8e97af Color Usage In CSS

 body {
    color: #8e97af;
    }
 p {
    color: rgb(142, 151, 175);
    }
 header {
    border-bottom:1px solid #8e97af;
    }
Recent Random Colors