Random Color Generator

#1604d5 Color

Color Codes
Hex Code #1604d5
RGB Code rgb(22, 04, 213)
HSL Code hsl(245, 96%, 43%)

#1604d5 Color Syntax

rgb()

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

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

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(245, 96%, 43%);
  }

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 #1604d5

RGB Code Hex Code Preview
rgb(22, 04, 213, 10%) #1604d51a  
rgb(22, 04, 213, 20%) #1604d533  
rgb(22, 04, 213, 40%) #1604d54C  
rgb(22, 04, 213, 60%) #1604d599  
rgb(22, 04, 213, 80%) #1604d5CC  
rgb(22, 04, 213, 100%) #1604d5FF  

Saturated and desaturated colors of #1604d5

HSL Code Preview
hsl(245, 10%, 43%)  
hsl(245, 20%, 43%)  
hsl(245, 40%, 43%)  
hsl(245, 60%, 43%)  
hsl(245, 80%, 43%)  
hsl(245, 100%, 43%)  

#1604d5 Color Usage In CSS

 body {
    color: #1604d5;
    }
 p {
    color: rgb(22, 04, 213);
    }
 header {
    border-bottom:1px solid #1604d5;
    }
Recent Random Colors