Random Color Generator

#016390 Color

Color Codes
Hex Code #016390
RGB Code rgb(01, 99, 144)
HSL Code hsl(199, 99%, 28%)

#016390 Color Syntax

rgb()

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

 main {
    background-color: rgb(01, 99, 144);
   }

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(199, 99%, 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 #016390

RGB Code Hex Code Preview
rgb(01, 99, 144, 10%) #0163901a  
rgb(01, 99, 144, 20%) #01639033  
rgb(01, 99, 144, 40%) #0163904C  
rgb(01, 99, 144, 60%) #01639099  
rgb(01, 99, 144, 80%) #016390CC  
rgb(01, 99, 144, 100%) #016390FF  

Saturated and desaturated colors of #016390

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

#016390 Color Usage In CSS

 body {
    color: #016390;
    }
 p {
    color: rgb(01, 99, 144);
    }
 header {
    border-bottom:1px solid #016390;
    }
Recent Random Colors