Random Color Generator

#36b537 Color

Color Codes
Hex Code #36b537
RGB Code rgb(54, 181, 55)
HSL Code hsl(120, 54%, 46%)

#36b537 Color Syntax

rgb()

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

 main {
    background-color: rgb(54, 181, 55);
   }

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(120, 54%, 46%);
  }

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 #36b537

RGB Code Hex Code Preview
rgb(54, 181, 55, 10%) #36b5371a  
rgb(54, 181, 55, 20%) #36b53733  
rgb(54, 181, 55, 40%) #36b5374C  
rgb(54, 181, 55, 60%) #36b53799  
rgb(54, 181, 55, 80%) #36b537CC  
rgb(54, 181, 55, 100%) #36b537FF  

Saturated and desaturated colors of #36b537

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

#36b537 Color Usage In CSS

 body {
    color: #36b537;
    }
 p {
    color: rgb(54, 181, 55);
    }
 header {
    border-bottom:1px solid #36b537;
    }
Recent Random Colors