#44586b Color
Color Codes | |
---|---|
Hex Code | #44586b |
RGB Code | rgb(68, 88, 107) |
HSL Code | hsl(209, 22%, 34%) |
#44586b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(68, 88, 107); }
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(209, 22%, 34%); }
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 #44586b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(68, 88, 107, 10%) | #44586b1a | |
rgb(68, 88, 107, 20%) | #44586b33 | |
rgb(68, 88, 107, 40%) | #44586b4C | |
rgb(68, 88, 107, 60%) | #44586b99 | |
rgb(68, 88, 107, 80%) | #44586bCC | |
rgb(68, 88, 107, 100%) | #44586bFF |
Saturated and desaturated colors of #44586b
HSL Code | Preview |
---|---|
hsl(209, 10%, 34%) | |
hsl(209, 20%, 34%) | |
hsl(209, 40%, 34%) | |
hsl(209, 60%, 34%) | |
hsl(209, 80%, 34%) | |
hsl(209, 100%, 34%) |
#44586b Color Usage In CSS
body { color: #44586b; } p { color: rgb(68, 88, 107); } header { border-bottom:1px solid #44586b; }