Random Color Generator

#4ad606 Color

Color Codes
Hex Code #4ad606
RGB Code rgb(74, 214, 06)
HSL Code hsl(100, 95%, 43%)

#4ad606 Color Syntax

rgb()

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

 main {
    background-color: rgb(74, 214, 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(100, 95%, 43%);
  }

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 #4ad606

RGB Code Hex Code Preview
rgb(74, 214, 06, 10%) #4ad6061a  
rgb(74, 214, 06, 20%) #4ad60633  
rgb(74, 214, 06, 40%) #4ad6064C  
rgb(74, 214, 06, 60%) #4ad60699  
rgb(74, 214, 06, 80%) #4ad606CC  
rgb(74, 214, 06, 100%) #4ad606FF  

Saturated and desaturated colors of #4ad606

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

#4ad606 Color Usage In CSS

 body {
    color: #4ad606;
    }
 p {
    color: rgb(74, 214, 06);
    }
 header {
    border-bottom:1px solid #4ad606;
    }
Recent Random Colors