Random Color Generator

#85d76c Color

Color Codes
Hex Code #85d76c
RGB Code rgb(133, 215, 108)
HSL Code hsl(106, 57%, 63%)

#85d76c Color Syntax

rgb()

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

 main {
    background-color: rgb(133, 215, 108);
   }

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(106, 57%, 63%);
  }

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 #85d76c

RGB Code Hex Code Preview
rgb(133, 215, 108, 10%) #85d76c1a  
rgb(133, 215, 108, 20%) #85d76c33  
rgb(133, 215, 108, 40%) #85d76c4C  
rgb(133, 215, 108, 60%) #85d76c99  
rgb(133, 215, 108, 80%) #85d76cCC  
rgb(133, 215, 108, 100%) #85d76cFF  

Saturated and desaturated colors of #85d76c

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

#85d76c Color Usage In CSS

 body {
    color: #85d76c;
    }
 p {
    color: rgb(133, 215, 108);
    }
 header {
    border-bottom:1px solid #85d76c;
    }
Recent Random Colors