Random Color Generator

#849960 Color

Color Codes
Hex Code #849960
RGB Code rgb(132, 153, 96)
HSL Code hsl(82, 23%, 49%)

#849960 Color Syntax

rgb()

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

 main {
    background-color: rgb(132, 153, 96);
   }

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(82, 23%, 49%);
  }

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 #849960

RGB Code Hex Code Preview
rgb(132, 153, 96, 10%) #8499601a  
rgb(132, 153, 96, 20%) #84996033  
rgb(132, 153, 96, 40%) #8499604C  
rgb(132, 153, 96, 60%) #84996099  
rgb(132, 153, 96, 80%) #849960CC  
rgb(132, 153, 96, 100%) #849960FF  

Saturated and desaturated colors of #849960

HSL Code Preview
hsl(82, 10%, 49%)  
hsl(82, 20%, 49%)  
hsl(82, 40%, 49%)  
hsl(82, 60%, 49%)  
hsl(82, 80%, 49%)  
hsl(82, 100%, 49%)  

#849960 Color Usage In CSS

 body {
    color: #849960;
    }
 p {
    color: rgb(132, 153, 96);
    }
 header {
    border-bottom:1px solid #849960;
    }
Recent Random Colors