Random Color Generator

#01c806 Color

Color Codes
Hex Code #01c806
RGB Code rgb(01, 200, 06)
HSL Code hsl(122, 99%, 39%)

#01c806 Color Syntax

rgb()

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

 main {
    background-color: rgb(01, 200, 06);
   }

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(122, 99%, 39%);
  }

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 #01c806

RGB Code Hex Code Preview
rgb(01, 200, 06, 10%) #01c8061a  
rgb(01, 200, 06, 20%) #01c80633  
rgb(01, 200, 06, 40%) #01c8064C  
rgb(01, 200, 06, 60%) #01c80699  
rgb(01, 200, 06, 80%) #01c806CC  
rgb(01, 200, 06, 100%) #01c806FF  

Saturated and desaturated colors of #01c806

HSL Code Preview
hsl(122, 10%, 39%)  
hsl(122, 20%, 39%)  
hsl(122, 40%, 39%)  
hsl(122, 60%, 39%)  
hsl(122, 80%, 39%)  
hsl(122, 100%, 39%)  

#01c806 Color Usage In CSS

 body {
    color: #01c806;
    }
 p {
    color: rgb(01, 200, 06);
    }
 header {
    border-bottom:1px solid #01c806;
    }
Recent Random Colors