Random Color Generator

#a2e48b Color

Color Codes
Hex Code #a2e48b
RGB Code rgb(162, 228, 139)
HSL Code hsl(104, 62%, 72%)

#a2e48b Color Syntax

rgb()

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

 main {
    background-color: rgb(162, 228, 139);
   }

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(104, 62%, 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 #a2e48b

RGB Code Hex Code Preview
rgb(162, 228, 139, 10%) #a2e48b1a  
rgb(162, 228, 139, 20%) #a2e48b33  
rgb(162, 228, 139, 40%) #a2e48b4C  
rgb(162, 228, 139, 60%) #a2e48b99  
rgb(162, 228, 139, 80%) #a2e48bCC  
rgb(162, 228, 139, 100%) #a2e48bFF  

Saturated and desaturated colors of #a2e48b

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

#a2e48b Color Usage In CSS

 body {
    color: #a2e48b;
    }
 p {
    color: rgb(162, 228, 139);
    }
 header {
    border-bottom:1px solid #a2e48b;
    }
Recent Random Colors