Random Color Generator

#849b83 Color

Color Codes
Hex Code #849b83
RGB Code rgb(132, 155, 131)
HSL Code hsl(118, 11%, 56%)

#849b83 Color Syntax

rgb()

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

 main {
    background-color: rgb(132, 155, 131);
   }

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(118, 11%, 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 #849b83

RGB Code Hex Code Preview
rgb(132, 155, 131, 10%) #849b831a  
rgb(132, 155, 131, 20%) #849b8333  
rgb(132, 155, 131, 40%) #849b834C  
rgb(132, 155, 131, 60%) #849b8399  
rgb(132, 155, 131, 80%) #849b83CC  
rgb(132, 155, 131, 100%) #849b83FF  

Saturated and desaturated colors of #849b83

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

#849b83 Color Usage In CSS

 body {
    color: #849b83;
    }
 p {
    color: rgb(132, 155, 131);
    }
 header {
    border-bottom:1px solid #849b83;
    }
Recent Random Colors