Random Color Generator

#0e49af Color

Color Codes
Hex Code #0e49af
RGB Code rgb(14, 73, 175)
HSL Code hsl(218, 85%, 37%)

#0e49af Color Syntax

rgb()

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

 main {
    background-color: rgb(14, 73, 175);
   }

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(218, 85%, 37%);
  }

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

RGB Code Hex Code Preview
rgb(14, 73, 175, 10%) #0e49af1a  
rgb(14, 73, 175, 20%) #0e49af33  
rgb(14, 73, 175, 40%) #0e49af4C  
rgb(14, 73, 175, 60%) #0e49af99  
rgb(14, 73, 175, 80%) #0e49afCC  
rgb(14, 73, 175, 100%) #0e49afFF  

Saturated and desaturated colors of #0e49af

HSL Code Preview
hsl(218, 10%, 37%)  
hsl(218, 20%, 37%)  
hsl(218, 40%, 37%)  
hsl(218, 60%, 37%)  
hsl(218, 80%, 37%)  
hsl(218, 100%, 37%)  

#0e49af Color Usage In CSS

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