Random Color Generator

#1614ae Color

Color Codes
Hex Code #1614ae
RGB Code rgb(22, 20, 174)
HSL Code hsl(241, 79%, 38%)

#1614ae Color Syntax

rgb()

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

 main {
    background-color: rgb(22, 20, 174);
   }

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(241, 79%, 38%);
  }

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 #1614ae

RGB Code Hex Code Preview
rgb(22, 20, 174, 10%) #1614ae1a  
rgb(22, 20, 174, 20%) #1614ae33  
rgb(22, 20, 174, 40%) #1614ae4C  
rgb(22, 20, 174, 60%) #1614ae99  
rgb(22, 20, 174, 80%) #1614aeCC  
rgb(22, 20, 174, 100%) #1614aeFF  

Saturated and desaturated colors of #1614ae

HSL Code Preview
hsl(241, 10%, 38%)  
hsl(241, 20%, 38%)  
hsl(241, 40%, 38%)  
hsl(241, 60%, 38%)  
hsl(241, 80%, 38%)  
hsl(241, 100%, 38%)  

#1614ae Color Usage In CSS

 body {
    color: #1614ae;
    }
 p {
    color: rgb(22, 20, 174);
    }
 header {
    border-bottom:1px solid #1614ae;
    }
Recent Random Colors