Random Color Generator

#556490 Color

Color Codes
Hex Code #556490
RGB Code rgb(85, 100, 144)
HSL Code hsl(225, 26%, 45%)

#556490 Color Syntax

rgb()

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

 main {
    background-color: rgb(85, 100, 144);
   }

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(225, 26%, 45%);
  }

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 #556490

RGB Code Hex Code Preview
rgb(85, 100, 144, 10%) #5564901a  
rgb(85, 100, 144, 20%) #55649033  
rgb(85, 100, 144, 40%) #5564904C  
rgb(85, 100, 144, 60%) #55649099  
rgb(85, 100, 144, 80%) #556490CC  
rgb(85, 100, 144, 100%) #556490FF  

Saturated and desaturated colors of #556490

HSL Code Preview
hsl(225, 10%, 45%)  
hsl(225, 20%, 45%)  
hsl(225, 40%, 45%)  
hsl(225, 60%, 45%)  
hsl(225, 80%, 45%)  
hsl(225, 100%, 45%)  

#556490 Color Usage In CSS

 body {
    color: #556490;
    }
 p {
    color: rgb(85, 100, 144);
    }
 header {
    border-bottom:1px solid #556490;
    }
Recent Random Colors