Random Color Generator

#1616ba Color

Color Codes
Hex Code #1616ba
RGB Code rgb(22, 22, 186)
HSL Code hsl(240, 79%, 41%)

#1616ba Color Syntax

rgb()

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

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

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(240, 79%, 41%);
  }

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 #1616ba

RGB Code Hex Code Preview
rgb(22, 22, 186, 10%) #1616ba1a  
rgb(22, 22, 186, 20%) #1616ba33  
rgb(22, 22, 186, 40%) #1616ba4C  
rgb(22, 22, 186, 60%) #1616ba99  
rgb(22, 22, 186, 80%) #1616baCC  
rgb(22, 22, 186, 100%) #1616baFF  

Saturated and desaturated colors of #1616ba

HSL Code Preview
hsl(240, 10%, 41%)  
hsl(240, 20%, 41%)  
hsl(240, 40%, 41%)  
hsl(240, 60%, 41%)  
hsl(240, 80%, 41%)  
hsl(240, 100%, 41%)  

#1616ba Color Usage In CSS

 body {
    color: #1616ba;
    }
 p {
    color: rgb(22, 22, 186);
    }
 header {
    border-bottom:1px solid #1616ba;
    }
Recent Random Colors