Random Color Generator

#76a85d Color

Color Codes
Hex Code #76a85d
RGB Code rgb(118, 168, 93)
HSL Code hsl(100, 30%, 51%)

#76a85d Color Syntax

rgb()

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

 main {
    background-color: rgb(118, 168, 93);
   }

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(100, 30%, 51%);
  }

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

RGB Code Hex Code Preview
rgb(118, 168, 93, 10%) #76a85d1a  
rgb(118, 168, 93, 20%) #76a85d33  
rgb(118, 168, 93, 40%) #76a85d4C  
rgb(118, 168, 93, 60%) #76a85d99  
rgb(118, 168, 93, 80%) #76a85dCC  
rgb(118, 168, 93, 100%) #76a85dFF  

Saturated and desaturated colors of #76a85d

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

#76a85d Color Usage In CSS

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