Random Color Generator

#56b061 Color

Color Codes
Hex Code #56b061
RGB Code rgb(86, 176, 97)
HSL Code hsl(127, 36%, 51%)

#56b061 Color Syntax

rgb()

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

 main {
    background-color: rgb(86, 176, 97);
   }

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(127, 36%, 51%);
  }

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 #56b061

RGB Code Hex Code Preview
rgb(86, 176, 97, 10%) #56b0611a  
rgb(86, 176, 97, 20%) #56b06133  
rgb(86, 176, 97, 40%) #56b0614C  
rgb(86, 176, 97, 60%) #56b06199  
rgb(86, 176, 97, 80%) #56b061CC  
rgb(86, 176, 97, 100%) #56b061FF  

Saturated and desaturated colors of #56b061

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

#56b061 Color Usage In CSS

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