Random Color Generator

#a1dd88 Color

Color Codes
Hex Code #a1dd88
RGB Code rgb(161, 221, 136)
HSL Code hsl(102, 56%, 70%)

#a1dd88 Color Syntax

rgb()

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

 main {
    background-color: rgb(161, 221, 136);
   }

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(102, 56%, 70%);
  }

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

RGB Code Hex Code Preview
rgb(161, 221, 136, 10%) #a1dd881a  
rgb(161, 221, 136, 20%) #a1dd8833  
rgb(161, 221, 136, 40%) #a1dd884C  
rgb(161, 221, 136, 60%) #a1dd8899  
rgb(161, 221, 136, 80%) #a1dd88CC  
rgb(161, 221, 136, 100%) #a1dd88FF  

Saturated and desaturated colors of #a1dd88

HSL Code Preview
hsl(102, 10%, 70%)  
hsl(102, 20%, 70%)  
hsl(102, 40%, 70%)  
hsl(102, 60%, 70%)  
hsl(102, 80%, 70%)  
hsl(102, 100%, 70%)  

#a1dd88 Color Usage In CSS

 body {
    color: #a1dd88;
    }
 p {
    color: rgb(161, 221, 136);
    }
 header {
    border-bottom:1px solid #a1dd88;
    }
Recent Random Colors