Random Color Generator

#79968e Color

Color Codes
Hex Code #79968e
RGB Code rgb(121, 150, 142)
HSL Code hsl(163, 12%, 53%)

#79968e Color Syntax

rgb()

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

 main {
    background-color: rgb(121, 150, 142);
   }

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(163, 12%, 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 #79968e

RGB Code Hex Code Preview
rgb(121, 150, 142, 10%) #79968e1a  
rgb(121, 150, 142, 20%) #79968e33  
rgb(121, 150, 142, 40%) #79968e4C  
rgb(121, 150, 142, 60%) #79968e99  
rgb(121, 150, 142, 80%) #79968eCC  
rgb(121, 150, 142, 100%) #79968eFF  

Saturated and desaturated colors of #79968e

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

#79968e Color Usage In CSS

 body {
    color: #79968e;
    }
 p {
    color: rgb(121, 150, 142);
    }
 header {
    border-bottom:1px solid #79968e;
    }
Recent Random Colors