#7fe934 Color
Color Codes | |
---|---|
Hex Code | #7fe934 |
RGB Code | rgb(127, 233, 52) |
HSL Code | hsl(95, 80%, 56%) |
#7fe934 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(127, 233, 52); }
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(95, 80%, 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 #7fe934
RGB Code | Hex Code | Preview |
---|---|---|
rgb(127, 233, 52, 10%) | #7fe9341a | |
rgb(127, 233, 52, 20%) | #7fe93433 | |
rgb(127, 233, 52, 40%) | #7fe9344C | |
rgb(127, 233, 52, 60%) | #7fe93499 | |
rgb(127, 233, 52, 80%) | #7fe934CC | |
rgb(127, 233, 52, 100%) | #7fe934FF |
Saturated and desaturated colors of #7fe934
HSL Code | Preview |
---|---|
hsl(95, 10%, 56%) | |
hsl(95, 20%, 56%) | |
hsl(95, 40%, 56%) | |
hsl(95, 60%, 56%) | |
hsl(95, 80%, 56%) | |
hsl(95, 100%, 56%) |
#7fe934 Color Usage In CSS
body { color: #7fe934; } p { color: rgb(127, 233, 52); } header { border-bottom:1px solid #7fe934; }