Random Color Generator

#86e2a8 Color

Color Codes
Hex Code #86e2a8
RGB Code rgb(134, 226, 168)
HSL Code hsl(142, 61%, 71%)

#86e2a8 Color Syntax

rgb()

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

 main {
    background-color: rgb(134, 226, 168);
   }

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(142, 61%, 71%);
  }

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

RGB Code Hex Code Preview
rgb(134, 226, 168, 10%) #86e2a81a  
rgb(134, 226, 168, 20%) #86e2a833  
rgb(134, 226, 168, 40%) #86e2a84C  
rgb(134, 226, 168, 60%) #86e2a899  
rgb(134, 226, 168, 80%) #86e2a8CC  
rgb(134, 226, 168, 100%) #86e2a8FF  

Saturated and desaturated colors of #86e2a8

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

#86e2a8 Color Usage In CSS

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