Random Color Generator

#9af0aa Color

Color Codes
Hex Code #9af0aa
RGB Code rgb(154, 240, 170)
HSL Code hsl(131, 74%, 77%)

#9af0aa Color Syntax

rgb()

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

 main {
    background-color: rgb(154, 240, 170);
   }

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(131, 74%, 77%);
  }

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 #9af0aa

RGB Code Hex Code Preview
rgb(154, 240, 170, 10%) #9af0aa1a  
rgb(154, 240, 170, 20%) #9af0aa33  
rgb(154, 240, 170, 40%) #9af0aa4C  
rgb(154, 240, 170, 60%) #9af0aa99  
rgb(154, 240, 170, 80%) #9af0aaCC  
rgb(154, 240, 170, 100%) #9af0aaFF  

Saturated and desaturated colors of #9af0aa

HSL Code Preview
hsl(131, 10%, 77%)  
hsl(131, 20%, 77%)  
hsl(131, 40%, 77%)  
hsl(131, 60%, 77%)  
hsl(131, 80%, 77%)  
hsl(131, 100%, 77%)  

#9af0aa Color Usage In CSS

 body {
    color: #9af0aa;
    }
 p {
    color: rgb(154, 240, 170);
    }
 header {
    border-bottom:1px solid #9af0aa;
    }
Recent Random Colors