Random Color Generator

#146b7a Color

Color Codes
Hex Code #146b7a
RGB Code rgb(20, 107, 122)
HSL Code hsl(189, 72%, 28%)

#146b7a Color Syntax

rgb()

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

 main {
    background-color: rgb(20, 107, 122);
   }

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(189, 72%, 28%);
  }

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 #146b7a

RGB Code Hex Code Preview
rgb(20, 107, 122, 10%) #146b7a1a  
rgb(20, 107, 122, 20%) #146b7a33  
rgb(20, 107, 122, 40%) #146b7a4C  
rgb(20, 107, 122, 60%) #146b7a99  
rgb(20, 107, 122, 80%) #146b7aCC  
rgb(20, 107, 122, 100%) #146b7aFF  

Saturated and desaturated colors of #146b7a

HSL Code Preview
hsl(189, 10%, 28%)  
hsl(189, 20%, 28%)  
hsl(189, 40%, 28%)  
hsl(189, 60%, 28%)  
hsl(189, 80%, 28%)  
hsl(189, 100%, 28%)  

#146b7a Color Usage In CSS

 body {
    color: #146b7a;
    }
 p {
    color: rgb(20, 107, 122);
    }
 header {
    border-bottom:1px solid #146b7a;
    }
Recent Random Colors