Random Color Generator

#1964ad Color

Color Codes
Hex Code #1964ad
RGB Code rgb(25, 100, 173)
HSL Code hsl(210, 75%, 39%)

#1964ad Color Syntax

rgb()

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

 main {
    background-color: rgb(25, 100, 173);
   }

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(210, 75%, 39%);
  }

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 #1964ad

RGB Code Hex Code Preview
rgb(25, 100, 173, 10%) #1964ad1a  
rgb(25, 100, 173, 20%) #1964ad33  
rgb(25, 100, 173, 40%) #1964ad4C  
rgb(25, 100, 173, 60%) #1964ad99  
rgb(25, 100, 173, 80%) #1964adCC  
rgb(25, 100, 173, 100%) #1964adFF  

Saturated and desaturated colors of #1964ad

HSL Code Preview
hsl(210, 10%, 39%)  
hsl(210, 20%, 39%)  
hsl(210, 40%, 39%)  
hsl(210, 60%, 39%)  
hsl(210, 80%, 39%)  
hsl(210, 100%, 39%)  

#1964ad Color Usage In CSS

 body {
    color: #1964ad;
    }
 p {
    color: rgb(25, 100, 173);
    }
 header {
    border-bottom:1px solid #1964ad;
    }
Recent Random Colors