Random Color Generator

#5f774e Color

Color Codes
Hex Code #5f774e
RGB Code rgb(95, 119, 78)
HSL Code hsl(95, 21%, 39%)

#5f774e Color Syntax

rgb()

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

 main {
    background-color: rgb(95, 119, 78);
   }

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(95, 21%, 39%);
  }

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 #5f774e

RGB Code Hex Code Preview
rgb(95, 119, 78, 10%) #5f774e1a  
rgb(95, 119, 78, 20%) #5f774e33  
rgb(95, 119, 78, 40%) #5f774e4C  
rgb(95, 119, 78, 60%) #5f774e99  
rgb(95, 119, 78, 80%) #5f774eCC  
rgb(95, 119, 78, 100%) #5f774eFF  

Saturated and desaturated colors of #5f774e

HSL Code Preview
hsl(95, 10%, 39%)  
hsl(95, 20%, 39%)  
hsl(95, 40%, 39%)  
hsl(95, 60%, 39%)  
hsl(95, 80%, 39%)  
hsl(95, 100%, 39%)  

#5f774e Color Usage In CSS

 body {
    color: #5f774e;
    }
 p {
    color: rgb(95, 119, 78);
    }
 header {
    border-bottom:1px solid #5f774e;
    }
Recent Random Colors