#44d48d Color
Color Codes | |
---|---|
Hex Code | #44d48d |
RGB Code | rgb(68, 212, 141) |
HSL Code | hsl(150, 63%, 55%) |
#44d48d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(68, 212, 141); }
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(150, 63%, 55%); }
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 #44d48d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(68, 212, 141, 10%) | #44d48d1a | |
rgb(68, 212, 141, 20%) | #44d48d33 | |
rgb(68, 212, 141, 40%) | #44d48d4C | |
rgb(68, 212, 141, 60%) | #44d48d99 | |
rgb(68, 212, 141, 80%) | #44d48dCC | |
rgb(68, 212, 141, 100%) | #44d48dFF |
Saturated and desaturated colors of #44d48d
HSL Code | Preview |
---|---|
hsl(150, 10%, 55%) | |
hsl(150, 20%, 55%) | |
hsl(150, 40%, 55%) | |
hsl(150, 60%, 55%) | |
hsl(150, 80%, 55%) | |
hsl(150, 100%, 55%) |
#44d48d Color Usage In CSS
body { color: #44d48d; } p { color: rgb(68, 212, 141); } header { border-bottom:1px solid #44d48d; }