#44939d Color
Color Codes | |
---|---|
Hex Code | #44939d |
RGB Code | rgb(68, 147, 157) |
HSL Code | hsl(187, 40%, 44%) |
#44939d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(68, 147, 157); }
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(187, 40%, 44%); }
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 #44939d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(68, 147, 157, 10%) | #44939d1a | |
rgb(68, 147, 157, 20%) | #44939d33 | |
rgb(68, 147, 157, 40%) | #44939d4C | |
rgb(68, 147, 157, 60%) | #44939d99 | |
rgb(68, 147, 157, 80%) | #44939dCC | |
rgb(68, 147, 157, 100%) | #44939dFF |
Saturated and desaturated colors of #44939d
HSL Code | Preview |
---|---|
hsl(187, 10%, 44%) | |
hsl(187, 20%, 44%) | |
hsl(187, 40%, 44%) | |
hsl(187, 60%, 44%) | |
hsl(187, 80%, 44%) | |
hsl(187, 100%, 44%) |
#44939d Color Usage In CSS
body { color: #44939d; } p { color: rgb(68, 147, 157); } header { border-bottom:1px solid #44939d; }