Random Color Generator

#86a053 Color

Color Codes
Hex Code #86a053
RGB Code rgb(134, 160, 83)
HSL Code hsl(80, 32%, 48%)

#86a053 Color Syntax

rgb()

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

 main {
    background-color: rgb(134, 160, 83);
   }

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(80, 32%, 48%);
  }

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 #86a053

RGB Code Hex Code Preview
rgb(134, 160, 83, 10%) #86a0531a  
rgb(134, 160, 83, 20%) #86a05333  
rgb(134, 160, 83, 40%) #86a0534C  
rgb(134, 160, 83, 60%) #86a05399  
rgb(134, 160, 83, 80%) #86a053CC  
rgb(134, 160, 83, 100%) #86a053FF  

Saturated and desaturated colors of #86a053

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

#86a053 Color Usage In CSS

 body {
    color: #86a053;
    }
 p {
    color: rgb(134, 160, 83);
    }
 header {
    border-bottom:1px solid #86a053;
    }
Recent Random Colors