#72f450 Color
Color Codes | |
---|---|
Hex Code | #72f450 |
RGB Code | rgb(114, 244, 80) |
HSL Code | hsl(108, 88%, 64%) |
#72f450 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(114, 244, 80); }
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(108, 88%, 64%); }
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 #72f450
RGB Code | Hex Code | Preview |
---|---|---|
rgb(114, 244, 80, 10%) | #72f4501a | |
rgb(114, 244, 80, 20%) | #72f45033 | |
rgb(114, 244, 80, 40%) | #72f4504C | |
rgb(114, 244, 80, 60%) | #72f45099 | |
rgb(114, 244, 80, 80%) | #72f450CC | |
rgb(114, 244, 80, 100%) | #72f450FF |
Saturated and desaturated colors of #72f450
HSL Code | Preview |
---|---|
hsl(108, 10%, 64%) | |
hsl(108, 20%, 64%) | |
hsl(108, 40%, 64%) | |
hsl(108, 60%, 64%) | |
hsl(108, 80%, 64%) | |
hsl(108, 100%, 64%) |
#72f450 Color Usage In CSS
body { color: #72f450; } p { color: rgb(114, 244, 80); } header { border-bottom:1px solid #72f450; }