Random Color Generator

#a4d40c Color

Color Codes
Hex Code #a4d40c
RGB Code rgb(164, 212, 12)
HSL Code hsl(74, 89%, 44%)

#a4d40c Color Syntax

rgb()

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

 main {
    background-color: rgb(164, 212, 12);
   }

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(74, 89%, 44%);
  }

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 #a4d40c

RGB Code Hex Code Preview
rgb(164, 212, 12, 10%) #a4d40c1a  
rgb(164, 212, 12, 20%) #a4d40c33  
rgb(164, 212, 12, 40%) #a4d40c4C  
rgb(164, 212, 12, 60%) #a4d40c99  
rgb(164, 212, 12, 80%) #a4d40cCC  
rgb(164, 212, 12, 100%) #a4d40cFF  

Saturated and desaturated colors of #a4d40c

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

#a4d40c Color Usage In CSS

 body {
    color: #a4d40c;
    }
 p {
    color: rgb(164, 212, 12);
    }
 header {
    border-bottom:1px solid #a4d40c;
    }
Recent Random Colors