Random Color Generator

#14808c Color

Color Codes
Hex Code #14808c
RGB Code rgb(20, 128, 140)
HSL Code hsl(186, 75%, 31%)

#14808c Color Syntax

rgb()

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

 main {
    background-color: rgb(20, 128, 140);
   }

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(186, 75%, 31%);
  }

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 #14808c

RGB Code Hex Code Preview
rgb(20, 128, 140, 10%) #14808c1a  
rgb(20, 128, 140, 20%) #14808c33  
rgb(20, 128, 140, 40%) #14808c4C  
rgb(20, 128, 140, 60%) #14808c99  
rgb(20, 128, 140, 80%) #14808cCC  
rgb(20, 128, 140, 100%) #14808cFF  

Saturated and desaturated colors of #14808c

HSL Code Preview
hsl(186, 10%, 31%)  
hsl(186, 20%, 31%)  
hsl(186, 40%, 31%)  
hsl(186, 60%, 31%)  
hsl(186, 80%, 31%)  
hsl(186, 100%, 31%)  

#14808c Color Usage In CSS

 body {
    color: #14808c;
    }
 p {
    color: rgb(20, 128, 140);
    }
 header {
    border-bottom:1px solid #14808c;
    }
Recent Random Colors