Random Color Generator

#9294ab Color

Color Codes
Hex Code #9294ab
RGB Code rgb(146, 148, 171)
HSL Code hsl(235, 13%, 62%)

#9294ab Color Syntax

rgb()

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

 main {
    background-color: rgb(146, 148, 171);
   }

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(235, 13%, 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 #9294ab

RGB Code Hex Code Preview
rgb(146, 148, 171, 10%) #9294ab1a  
rgb(146, 148, 171, 20%) #9294ab33  
rgb(146, 148, 171, 40%) #9294ab4C  
rgb(146, 148, 171, 60%) #9294ab99  
rgb(146, 148, 171, 80%) #9294abCC  
rgb(146, 148, 171, 100%) #9294abFF  

Saturated and desaturated colors of #9294ab

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

#9294ab Color Usage In CSS

 body {
    color: #9294ab;
    }
 p {
    color: rgb(146, 148, 171);
    }
 header {
    border-bottom:1px solid #9294ab;
    }
Recent Random Colors