Random Color Generator

#94a4aa Color

Color Codes
Hex Code #94a4aa
RGB Code rgb(148, 164, 170)
HSL Code hsl(196, 11%, 62%)

#94a4aa Color Syntax

rgb()

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

 main {
    background-color: rgb(148, 164, 170);
   }

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(196, 11%, 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 #94a4aa

RGB Code Hex Code Preview
rgb(148, 164, 170, 10%) #94a4aa1a  
rgb(148, 164, 170, 20%) #94a4aa33  
rgb(148, 164, 170, 40%) #94a4aa4C  
rgb(148, 164, 170, 60%) #94a4aa99  
rgb(148, 164, 170, 80%) #94a4aaCC  
rgb(148, 164, 170, 100%) #94a4aaFF  

Saturated and desaturated colors of #94a4aa

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

#94a4aa Color Usage In CSS

 body {
    color: #94a4aa;
    }
 p {
    color: rgb(148, 164, 170);
    }
 header {
    border-bottom:1px solid #94a4aa;
    }
Recent Random Colors