Random Color Generator

#71fd74 Color

Color Codes
Hex Code #71fd74
RGB Code rgb(113, 253, 116)
HSL Code hsl(121, 97%, 72%)

#71fd74 Color Syntax

rgb()

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

 main {
    background-color: rgb(113, 253, 116);
   }

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(121, 97%, 72%);
  }

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

RGB Code Hex Code Preview
rgb(113, 253, 116, 10%) #71fd741a  
rgb(113, 253, 116, 20%) #71fd7433  
rgb(113, 253, 116, 40%) #71fd744C  
rgb(113, 253, 116, 60%) #71fd7499  
rgb(113, 253, 116, 80%) #71fd74CC  
rgb(113, 253, 116, 100%) #71fd74FF  

Saturated and desaturated colors of #71fd74

HSL Code Preview
hsl(121, 10%, 72%)  
hsl(121, 20%, 72%)  
hsl(121, 40%, 72%)  
hsl(121, 60%, 72%)  
hsl(121, 80%, 72%)  
hsl(121, 100%, 72%)  

#71fd74 Color Usage In CSS

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