Random Color Generator

#85cf50 Color

Color Codes
Hex Code #85cf50
RGB Code rgb(133, 207, 80)
HSL Code hsl(95, 57%, 56%)

#85cf50 Color Syntax

rgb()

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

 main {
    background-color: rgb(133, 207, 80);
   }

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(95, 57%, 56%);
  }

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

RGB Code Hex Code Preview
rgb(133, 207, 80, 10%) #85cf501a  
rgb(133, 207, 80, 20%) #85cf5033  
rgb(133, 207, 80, 40%) #85cf504C  
rgb(133, 207, 80, 60%) #85cf5099  
rgb(133, 207, 80, 80%) #85cf50CC  
rgb(133, 207, 80, 100%) #85cf50FF  

Saturated and desaturated colors of #85cf50

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

#85cf50 Color Usage In CSS

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