Random Color Generator

#76c048 Color

Color Codes
Hex Code #76c048
RGB Code rgb(118, 192, 72)
HSL Code hsl(97, 49%, 52%)

#76c048 Color Syntax

rgb()

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

 main {
    background-color: rgb(118, 192, 72);
   }

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(97, 49%, 52%);
  }

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 #76c048

RGB Code Hex Code Preview
rgb(118, 192, 72, 10%) #76c0481a  
rgb(118, 192, 72, 20%) #76c04833  
rgb(118, 192, 72, 40%) #76c0484C  
rgb(118, 192, 72, 60%) #76c04899  
rgb(118, 192, 72, 80%) #76c048CC  
rgb(118, 192, 72, 100%) #76c048FF  

Saturated and desaturated colors of #76c048

HSL Code Preview
hsl(97, 10%, 52%)  
hsl(97, 20%, 52%)  
hsl(97, 40%, 52%)  
hsl(97, 60%, 52%)  
hsl(97, 80%, 52%)  
hsl(97, 100%, 52%)  

#76c048 Color Usage In CSS

 body {
    color: #76c048;
    }
 p {
    color: rgb(118, 192, 72);
    }
 header {
    border-bottom:1px solid #76c048;
    }
Recent Random Colors