#48f93c Color
Color Codes | |
---|---|
Hex Code | #48f93c |
RGB Code | rgb(72, 249, 60) |
HSL Code | hsl(116, 94%, 61%) |
#48f93c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(72, 249, 60); }
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(116, 94%, 61%); }
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 #48f93c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(72, 249, 60, 10%) | #48f93c1a | |
rgb(72, 249, 60, 20%) | #48f93c33 | |
rgb(72, 249, 60, 40%) | #48f93c4C | |
rgb(72, 249, 60, 60%) | #48f93c99 | |
rgb(72, 249, 60, 80%) | #48f93cCC | |
rgb(72, 249, 60, 100%) | #48f93cFF |
Saturated and desaturated colors of #48f93c
HSL Code | Preview |
---|---|
hsl(116, 10%, 61%) | |
hsl(116, 20%, 61%) | |
hsl(116, 40%, 61%) | |
hsl(116, 60%, 61%) | |
hsl(116, 80%, 61%) | |
hsl(116, 100%, 61%) |
#48f93c Color Usage In CSS
body { color: #48f93c; } p { color: rgb(72, 249, 60); } header { border-bottom:1px solid #48f93c; }