Random Color Generator

#86bd38 Color

Color Codes
Hex Code #86bd38
RGB Code rgb(134, 189, 56)
HSL Code hsl(85, 54%, 48%)

#86bd38 Color Syntax

rgb()

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

 main {
    background-color: rgb(134, 189, 56);
   }

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(85, 54%, 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 #86bd38

RGB Code Hex Code Preview
rgb(134, 189, 56, 10%) #86bd381a  
rgb(134, 189, 56, 20%) #86bd3833  
rgb(134, 189, 56, 40%) #86bd384C  
rgb(134, 189, 56, 60%) #86bd3899  
rgb(134, 189, 56, 80%) #86bd38CC  
rgb(134, 189, 56, 100%) #86bd38FF  

Saturated and desaturated colors of #86bd38

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

#86bd38 Color Usage In CSS

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