Random Color Generator

#14c081 Color

Color Codes
Hex Code #14c081
RGB Code rgb(20, 192, 129)
HSL Code hsl(158, 81%, 42%)

#14c081 Color Syntax

rgb()

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

 main {
    background-color: rgb(20, 192, 129);
   }

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(158, 81%, 42%);
  }

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

RGB Code Hex Code Preview
rgb(20, 192, 129, 10%) #14c0811a  
rgb(20, 192, 129, 20%) #14c08133  
rgb(20, 192, 129, 40%) #14c0814C  
rgb(20, 192, 129, 60%) #14c08199  
rgb(20, 192, 129, 80%) #14c081CC  
rgb(20, 192, 129, 100%) #14c081FF  

Saturated and desaturated colors of #14c081

HSL Code Preview
hsl(158, 10%, 42%)  
hsl(158, 20%, 42%)  
hsl(158, 40%, 42%)  
hsl(158, 60%, 42%)  
hsl(158, 80%, 42%)  
hsl(158, 100%, 42%)  

#14c081 Color Usage In CSS

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