Random Color Generator

#a1dea2 Color

Color Codes
Hex Code #a1dea2
RGB Code rgb(161, 222, 162)
HSL Code hsl(121, 48%, 75%)

#a1dea2 Color Syntax

rgb()

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

 main {
    background-color: rgb(161, 222, 162);
   }

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(121, 48%, 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 #a1dea2

RGB Code Hex Code Preview
rgb(161, 222, 162, 10%) #a1dea21a  
rgb(161, 222, 162, 20%) #a1dea233  
rgb(161, 222, 162, 40%) #a1dea24C  
rgb(161, 222, 162, 60%) #a1dea299  
rgb(161, 222, 162, 80%) #a1dea2CC  
rgb(161, 222, 162, 100%) #a1dea2FF  

Saturated and desaturated colors of #a1dea2

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

#a1dea2 Color Usage In CSS

 body {
    color: #a1dea2;
    }
 p {
    color: rgb(161, 222, 162);
    }
 header {
    border-bottom:1px solid #a1dea2;
    }
Recent Random Colors