Random Color Generator

#86b87e Color

Color Codes
Hex Code #86b87e
RGB Code rgb(134, 184, 126)
HSL Code hsl(112, 29%, 61%)

#86b87e Color Syntax

rgb()

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

 main {
    background-color: rgb(134, 184, 126);
   }

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(112, 29%, 61%);
  }

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

RGB Code Hex Code Preview
rgb(134, 184, 126, 10%) #86b87e1a  
rgb(134, 184, 126, 20%) #86b87e33  
rgb(134, 184, 126, 40%) #86b87e4C  
rgb(134, 184, 126, 60%) #86b87e99  
rgb(134, 184, 126, 80%) #86b87eCC  
rgb(134, 184, 126, 100%) #86b87eFF  

Saturated and desaturated colors of #86b87e

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

#86b87e Color Usage In CSS

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