Random Color Generator

#919976 Color

Color Codes
Hex Code #919976
RGB Code rgb(145, 153, 118)
HSL Code hsl(74, 15%, 53%)

#919976 Color Syntax

rgb()

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

 main {
    background-color: rgb(145, 153, 118);
   }

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(74, 15%, 53%);
  }

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

RGB Code Hex Code Preview
rgb(145, 153, 118, 10%) #9199761a  
rgb(145, 153, 118, 20%) #91997633  
rgb(145, 153, 118, 40%) #9199764C  
rgb(145, 153, 118, 60%) #91997699  
rgb(145, 153, 118, 80%) #919976CC  
rgb(145, 153, 118, 100%) #919976FF  

Saturated and desaturated colors of #919976

HSL Code Preview
hsl(74, 10%, 53%)  
hsl(74, 20%, 53%)  
hsl(74, 40%, 53%)  
hsl(74, 60%, 53%)  
hsl(74, 80%, 53%)  
hsl(74, 100%, 53%)  

#919976 Color Usage In CSS

 body {
    color: #919976;
    }
 p {
    color: rgb(145, 153, 118);
    }
 header {
    border-bottom:1px solid #919976;
    }
Recent Random Colors