Random Color Generator

#224890 Color

Color Codes
Hex Code #224890
RGB Code rgb(34, 72, 144)
HSL Code hsl(219, 62%, 35%)

#224890 Color Syntax

rgb()

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

 main {
    background-color: rgb(34, 72, 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(219, 62%, 35%);
  }

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

RGB Code Hex Code Preview
rgb(34, 72, 144, 10%) #2248901a  
rgb(34, 72, 144, 20%) #22489033  
rgb(34, 72, 144, 40%) #2248904C  
rgb(34, 72, 144, 60%) #22489099  
rgb(34, 72, 144, 80%) #224890CC  
rgb(34, 72, 144, 100%) #224890FF  

Saturated and desaturated colors of #224890

HSL Code Preview
hsl(219, 10%, 35%)  
hsl(219, 20%, 35%)  
hsl(219, 40%, 35%)  
hsl(219, 60%, 35%)  
hsl(219, 80%, 35%)  
hsl(219, 100%, 35%)  

#224890 Color Usage In CSS

 body {
    color: #224890;
    }
 p {
    color: rgb(34, 72, 144);
    }
 header {
    border-bottom:1px solid #224890;
    }
Recent Random Colors