#48d661 Color
Color Codes | |
---|---|
Hex Code | #48d661 |
RGB Code | rgb(72, 214, 97) |
HSL Code | hsl(131, 63%, 56%) |
#48d661 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(72, 214, 97); }
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(131, 63%, 56%); }
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 #48d661
RGB Code | Hex Code | Preview |
---|---|---|
rgb(72, 214, 97, 10%) | #48d6611a | |
rgb(72, 214, 97, 20%) | #48d66133 | |
rgb(72, 214, 97, 40%) | #48d6614C | |
rgb(72, 214, 97, 60%) | #48d66199 | |
rgb(72, 214, 97, 80%) | #48d661CC | |
rgb(72, 214, 97, 100%) | #48d661FF |
Saturated and desaturated colors of #48d661
HSL Code | Preview |
---|---|
hsl(131, 10%, 56%) | |
hsl(131, 20%, 56%) | |
hsl(131, 40%, 56%) | |
hsl(131, 60%, 56%) | |
hsl(131, 80%, 56%) | |
hsl(131, 100%, 56%) |
#48d661 Color Usage In CSS
body { color: #48d661; } p { color: rgb(72, 214, 97); } header { border-bottom:1px solid #48d661; }