Random Color Generator

#0e1a3a Color

Color Codes
Hex Code #0e1a3a
RGB Code rgb(14, 26, 58)
HSL Code hsl(224, 61%, 14%)

#0e1a3a Color Syntax

rgb()

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

 main {
    background-color: rgb(14, 26, 58);
   }

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(224, 61%, 14%);
  }

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 #0e1a3a

RGB Code Hex Code Preview
rgb(14, 26, 58, 10%) #0e1a3a1a  
rgb(14, 26, 58, 20%) #0e1a3a33  
rgb(14, 26, 58, 40%) #0e1a3a4C  
rgb(14, 26, 58, 60%) #0e1a3a99  
rgb(14, 26, 58, 80%) #0e1a3aCC  
rgb(14, 26, 58, 100%) #0e1a3aFF  

Saturated and desaturated colors of #0e1a3a

HSL Code Preview
hsl(224, 10%, 14%)  
hsl(224, 20%, 14%)  
hsl(224, 40%, 14%)  
hsl(224, 60%, 14%)  
hsl(224, 80%, 14%)  
hsl(224, 100%, 14%)  

#0e1a3a Color Usage In CSS

 body {
    color: #0e1a3a;
    }
 p {
    color: rgb(14, 26, 58);
    }
 header {
    border-bottom:1px solid #0e1a3a;
    }
Recent Random Colors