Random Color Generator

#16d6ad Color

Color Codes
Hex Code #16d6ad
RGB Code rgb(22, 214, 173)
HSL Code hsl(167, 81%, 46%)

#16d6ad Color Syntax

rgb()

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

 main {
    background-color: rgb(22, 214, 173);
   }

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(167, 81%, 46%);
  }

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 #16d6ad

RGB Code Hex Code Preview
rgb(22, 214, 173, 10%) #16d6ad1a  
rgb(22, 214, 173, 20%) #16d6ad33  
rgb(22, 214, 173, 40%) #16d6ad4C  
rgb(22, 214, 173, 60%) #16d6ad99  
rgb(22, 214, 173, 80%) #16d6adCC  
rgb(22, 214, 173, 100%) #16d6adFF  

Saturated and desaturated colors of #16d6ad

HSL Code Preview
hsl(167, 10%, 46%)  
hsl(167, 20%, 46%)  
hsl(167, 40%, 46%)  
hsl(167, 60%, 46%)  
hsl(167, 80%, 46%)  
hsl(167, 100%, 46%)  

#16d6ad Color Usage In CSS

 body {
    color: #16d6ad;
    }
 p {
    color: rgb(22, 214, 173);
    }
 header {
    border-bottom:1px solid #16d6ad;
    }
Recent Random Colors