#00f88d Color
Color Codes | |
---|---|
Hex Code | #00f88d |
RGB Code | rgb(00, 248, 141) |
HSL Code | hsl(154, 100%, 49%) |
#00f88d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(00, 248, 141); }
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(154, 100%, 49%); }
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 #00f88d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(00, 248, 141, 10%) | #00f88d1a | |
rgb(00, 248, 141, 20%) | #00f88d33 | |
rgb(00, 248, 141, 40%) | #00f88d4C | |
rgb(00, 248, 141, 60%) | #00f88d99 | |
rgb(00, 248, 141, 80%) | #00f88dCC | |
rgb(00, 248, 141, 100%) | #00f88dFF |
Saturated and desaturated colors of #00f88d
HSL Code | Preview |
---|---|
hsl(154, 10%, 49%) | |
hsl(154, 20%, 49%) | |
hsl(154, 40%, 49%) | |
hsl(154, 60%, 49%) | |
hsl(154, 80%, 49%) | |
hsl(154, 100%, 49%) |
#00f88d Color Usage In CSS
body { color: #00f88d; } p { color: rgb(00, 248, 141); } header { border-bottom:1px solid #00f88d; }