Random Color Generator

#73d132 Color

Color Codes
Hex Code #73d132
RGB Code rgb(115, 209, 50)
HSL Code hsl(95, 63%, 51%)

#73d132 Color Syntax

rgb()

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

 main {
    background-color: rgb(115, 209, 50);
   }

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, 63%, 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 #73d132

RGB Code Hex Code Preview
rgb(115, 209, 50, 10%) #73d1321a  
rgb(115, 209, 50, 20%) #73d13233  
rgb(115, 209, 50, 40%) #73d1324C  
rgb(115, 209, 50, 60%) #73d13299  
rgb(115, 209, 50, 80%) #73d132CC  
rgb(115, 209, 50, 100%) #73d132FF  

Saturated and desaturated colors of #73d132

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

#73d132 Color Usage In CSS

 body {
    color: #73d132;
    }
 p {
    color: rgb(115, 209, 50);
    }
 header {
    border-bottom:1px solid #73d132;
    }
Recent Random Colors