Random Color Generator

#14c9ab Color

Color Codes
Hex Code #14c9ab
RGB Code rgb(20, 201, 171)
HSL Code hsl(170, 82%, 43%)

#14c9ab Color Syntax

rgb()

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

 main {
    background-color: rgb(20, 201, 171);
   }

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(170, 82%, 43%);
  }

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 #14c9ab

RGB Code Hex Code Preview
rgb(20, 201, 171, 10%) #14c9ab1a  
rgb(20, 201, 171, 20%) #14c9ab33  
rgb(20, 201, 171, 40%) #14c9ab4C  
rgb(20, 201, 171, 60%) #14c9ab99  
rgb(20, 201, 171, 80%) #14c9abCC  
rgb(20, 201, 171, 100%) #14c9abFF  

Saturated and desaturated colors of #14c9ab

HSL Code Preview
hsl(170, 10%, 43%)  
hsl(170, 20%, 43%)  
hsl(170, 40%, 43%)  
hsl(170, 60%, 43%)  
hsl(170, 80%, 43%)  
hsl(170, 100%, 43%)  

#14c9ab Color Usage In CSS

 body {
    color: #14c9ab;
    }
 p {
    color: rgb(20, 201, 171);
    }
 header {
    border-bottom:1px solid #14c9ab;
    }
Recent Random Colors