Random Color Generator

#a3fa82 Color

Color Codes
Hex Code #a3fa82
RGB Code rgb(163, 250, 130)
HSL Code hsl(104, 92%, 75%)

#a3fa82 Color Syntax

rgb()

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

 main {
    background-color: rgb(163, 250, 130);
   }

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, 92%, 75%);
  }

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

RGB Code Hex Code Preview
rgb(163, 250, 130, 10%) #a3fa821a  
rgb(163, 250, 130, 20%) #a3fa8233  
rgb(163, 250, 130, 40%) #a3fa824C  
rgb(163, 250, 130, 60%) #a3fa8299  
rgb(163, 250, 130, 80%) #a3fa82CC  
rgb(163, 250, 130, 100%) #a3fa82FF  

Saturated and desaturated colors of #a3fa82

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

#a3fa82 Color Usage In CSS

 body {
    color: #a3fa82;
    }
 p {
    color: rgb(163, 250, 130);
    }
 header {
    border-bottom:1px solid #a3fa82;
    }
Recent Random Colors