Random Color Generator

#86a48b Color

Color Codes
Hex Code #86a48b
RGB Code rgb(134, 164, 139)
HSL Code hsl(130, 14%, 58%)

#86a48b Color Syntax

rgb()

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

 main {
    background-color: rgb(134, 164, 139);
   }

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(130, 14%, 58%);
  }

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

RGB Code Hex Code Preview
rgb(134, 164, 139, 10%) #86a48b1a  
rgb(134, 164, 139, 20%) #86a48b33  
rgb(134, 164, 139, 40%) #86a48b4C  
rgb(134, 164, 139, 60%) #86a48b99  
rgb(134, 164, 139, 80%) #86a48bCC  
rgb(134, 164, 139, 100%) #86a48bFF  

Saturated and desaturated colors of #86a48b

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

#86a48b Color Usage In CSS

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