Random Color Generator

#2a5aab Color

Color Codes
Hex Code #2a5aab
RGB Code rgb(42, 90, 171)
HSL Code hsl(218, 61%, 42%)

#2a5aab Color Syntax

rgb()

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

 main {
    background-color: rgb(42, 90, 171);
   }

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, 61%, 42%);
  }

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 #2a5aab

RGB Code Hex Code Preview
rgb(42, 90, 171, 10%) #2a5aab1a  
rgb(42, 90, 171, 20%) #2a5aab33  
rgb(42, 90, 171, 40%) #2a5aab4C  
rgb(42, 90, 171, 60%) #2a5aab99  
rgb(42, 90, 171, 80%) #2a5aabCC  
rgb(42, 90, 171, 100%) #2a5aabFF  

Saturated and desaturated colors of #2a5aab

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

#2a5aab Color Usage In CSS

 body {
    color: #2a5aab;
    }
 p {
    color: rgb(42, 90, 171);
    }
 header {
    border-bottom:1px solid #2a5aab;
    }
Recent Random Colors