#48cd71 Color
Color Codes | |
---|---|
Hex Code | #48cd71 |
RGB Code | rgb(72, 205, 113) |
HSL Code | hsl(138, 57%, 54%) |
#48cd71 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(72, 205, 113); }
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(138, 57%, 54%); }
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 #48cd71
RGB Code | Hex Code | Preview |
---|---|---|
rgb(72, 205, 113, 10%) | #48cd711a | |
rgb(72, 205, 113, 20%) | #48cd7133 | |
rgb(72, 205, 113, 40%) | #48cd714C | |
rgb(72, 205, 113, 60%) | #48cd7199 | |
rgb(72, 205, 113, 80%) | #48cd71CC | |
rgb(72, 205, 113, 100%) | #48cd71FF |
Saturated and desaturated colors of #48cd71
HSL Code | Preview |
---|---|
hsl(138, 10%, 54%) | |
hsl(138, 20%, 54%) | |
hsl(138, 40%, 54%) | |
hsl(138, 60%, 54%) | |
hsl(138, 80%, 54%) | |
hsl(138, 100%, 54%) |
#48cd71 Color Usage In CSS
body { color: #48cd71; } p { color: rgb(72, 205, 113); } header { border-bottom:1px solid #48cd71; }