Random Color Generator

#a5fa4e Color

Color Codes
Hex Code #a5fa4e
RGB Code rgb(165, 250, 78)
HSL Code hsl(90, 95%, 64%)

#a5fa4e Color Syntax

rgb()

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

 main {
    background-color: rgb(165, 250, 78);
   }

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(90, 95%, 64%);
  }

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

RGB Code Hex Code Preview
rgb(165, 250, 78, 10%) #a5fa4e1a  
rgb(165, 250, 78, 20%) #a5fa4e33  
rgb(165, 250, 78, 40%) #a5fa4e4C  
rgb(165, 250, 78, 60%) #a5fa4e99  
rgb(165, 250, 78, 80%) #a5fa4eCC  
rgb(165, 250, 78, 100%) #a5fa4eFF  

Saturated and desaturated colors of #a5fa4e

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

#a5fa4e Color Usage In CSS

 body {
    color: #a5fa4e;
    }
 p {
    color: rgb(165, 250, 78);
    }
 header {
    border-bottom:1px solid #a5fa4e;
    }
Recent Random Colors