Random Color Generator

#a5f67a Color

Color Codes
Hex Code #a5f67a
RGB Code rgb(165, 246, 122)
HSL Code hsl(99, 87%, 72%)

#a5f67a Color Syntax

rgb()

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

 main {
    background-color: rgb(165, 246, 122);
   }

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(99, 87%, 72%);
  }

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

RGB Code Hex Code Preview
rgb(165, 246, 122, 10%) #a5f67a1a  
rgb(165, 246, 122, 20%) #a5f67a33  
rgb(165, 246, 122, 40%) #a5f67a4C  
rgb(165, 246, 122, 60%) #a5f67a99  
rgb(165, 246, 122, 80%) #a5f67aCC  
rgb(165, 246, 122, 100%) #a5f67aFF  

Saturated and desaturated colors of #a5f67a

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

#a5f67a Color Usage In CSS

 body {
    color: #a5f67a;
    }
 p {
    color: rgb(165, 246, 122);
    }
 header {
    border-bottom:1px solid #a5f67a;
    }
Recent Random Colors