#48d38b Color
Color Codes | |
---|---|
Hex Code | #48d38b |
RGB Code | rgb(72, 211, 139) |
HSL Code | hsl(149, 61%, 55%) |
#48d38b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(72, 211, 139); }
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(149, 61%, 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 #48d38b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(72, 211, 139, 10%) | #48d38b1a | |
rgb(72, 211, 139, 20%) | #48d38b33 | |
rgb(72, 211, 139, 40%) | #48d38b4C | |
rgb(72, 211, 139, 60%) | #48d38b99 | |
rgb(72, 211, 139, 80%) | #48d38bCC | |
rgb(72, 211, 139, 100%) | #48d38bFF |
Saturated and desaturated colors of #48d38b
HSL Code | Preview |
---|---|
hsl(149, 10%, 55%) | |
hsl(149, 20%, 55%) | |
hsl(149, 40%, 55%) | |
hsl(149, 60%, 55%) | |
hsl(149, 80%, 55%) | |
hsl(149, 100%, 55%) |
#48d38b Color Usage In CSS
body { color: #48d38b; } p { color: rgb(72, 211, 139); } header { border-bottom:1px solid #48d38b; }