Random Color Generator

#5a711a Color

Color Codes
Hex Code #5a711a
RGB Code rgb(90, 113, 26)
HSL Code hsl(76, 63%, 27%)

#5a711a Color Syntax

rgb()

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

 main {
    background-color: rgb(90, 113, 26);
   }

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(76, 63%, 27%);
  }

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

RGB Code Hex Code Preview
rgb(90, 113, 26, 10%) #5a711a1a  
rgb(90, 113, 26, 20%) #5a711a33  
rgb(90, 113, 26, 40%) #5a711a4C  
rgb(90, 113, 26, 60%) #5a711a99  
rgb(90, 113, 26, 80%) #5a711aCC  
rgb(90, 113, 26, 100%) #5a711aFF  

Saturated and desaturated colors of #5a711a

HSL Code Preview
hsl(76, 10%, 27%)  
hsl(76, 20%, 27%)  
hsl(76, 40%, 27%)  
hsl(76, 60%, 27%)  
hsl(76, 80%, 27%)  
hsl(76, 100%, 27%)  

#5a711a Color Usage In CSS

 body {
    color: #5a711a;
    }
 p {
    color: rgb(90, 113, 26);
    }
 header {
    border-bottom:1px solid #5a711a;
    }
Recent Random Colors