Random Color Generator

#71a94b Color

Color Codes
Hex Code #71a94b
RGB Code rgb(113, 169, 75)
HSL Code hsl(96, 39%, 48%)

#71a94b Color Syntax

rgb()

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

 main {
    background-color: rgb(113, 169, 75);
   }

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(96, 39%, 48%);
  }

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 #71a94b

RGB Code Hex Code Preview
rgb(113, 169, 75, 10%) #71a94b1a  
rgb(113, 169, 75, 20%) #71a94b33  
rgb(113, 169, 75, 40%) #71a94b4C  
rgb(113, 169, 75, 60%) #71a94b99  
rgb(113, 169, 75, 80%) #71a94bCC  
rgb(113, 169, 75, 100%) #71a94bFF  

Saturated and desaturated colors of #71a94b

HSL Code Preview
hsl(96, 10%, 48%)  
hsl(96, 20%, 48%)  
hsl(96, 40%, 48%)  
hsl(96, 60%, 48%)  
hsl(96, 80%, 48%)  
hsl(96, 100%, 48%)  

#71a94b Color Usage In CSS

 body {
    color: #71a94b;
    }
 p {
    color: rgb(113, 169, 75);
    }
 header {
    border-bottom:1px solid #71a94b;
    }
Recent Random Colors