Random Color Generator

#aaf9ba Color

Color Codes
Hex Code #aaf9ba
RGB Code rgb(170, 249, 186)
HSL Code hsl(132, 87%, 82%)

#aaf9ba Color Syntax

rgb()

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

 main {
    background-color: rgb(170, 249, 186);
   }

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(132, 87%, 82%);
  }

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

RGB Code Hex Code Preview
rgb(170, 249, 186, 10%) #aaf9ba1a  
rgb(170, 249, 186, 20%) #aaf9ba33  
rgb(170, 249, 186, 40%) #aaf9ba4C  
rgb(170, 249, 186, 60%) #aaf9ba99  
rgb(170, 249, 186, 80%) #aaf9baCC  
rgb(170, 249, 186, 100%) #aaf9baFF  

Saturated and desaturated colors of #aaf9ba

HSL Code Preview
hsl(132, 10%, 82%)  
hsl(132, 20%, 82%)  
hsl(132, 40%, 82%)  
hsl(132, 60%, 82%)  
hsl(132, 80%, 82%)  
hsl(132, 100%, 82%)  

#aaf9ba Color Usage In CSS

 body {
    color: #aaf9ba;
    }
 p {
    color: rgb(170, 249, 186);
    }
 header {
    border-bottom:1px solid #aaf9ba;
    }
Recent Random Colors