Random Color Generator

#84a742 Color

Color Codes
Hex Code #84a742
RGB Code rgb(132, 167, 66)
HSL Code hsl(81, 43%, 46%)

#84a742 Color Syntax

rgb()

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

 main {
    background-color: rgb(132, 167, 66);
   }

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(81, 43%, 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 #84a742

RGB Code Hex Code Preview
rgb(132, 167, 66, 10%) #84a7421a  
rgb(132, 167, 66, 20%) #84a74233  
rgb(132, 167, 66, 40%) #84a7424C  
rgb(132, 167, 66, 60%) #84a74299  
rgb(132, 167, 66, 80%) #84a742CC  
rgb(132, 167, 66, 100%) #84a742FF  

Saturated and desaturated colors of #84a742

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

#84a742 Color Usage In CSS

 body {
    color: #84a742;
    }
 p {
    color: rgb(132, 167, 66);
    }
 header {
    border-bottom:1px solid #84a742;
    }
Recent Random Colors