#9ffeb6 Color
Color Codes | |
---|---|
Hex Code | #9ffeb6 |
RGB Code | rgb(159, 254, 182) |
HSL Code | hsl(135, 98%, 81%) |
#9ffeb6 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(159, 254, 182); }
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(135, 98%, 81%); }
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 #9ffeb6
RGB Code | Hex Code | Preview |
---|---|---|
rgb(159, 254, 182, 10%) | #9ffeb61a | |
rgb(159, 254, 182, 20%) | #9ffeb633 | |
rgb(159, 254, 182, 40%) | #9ffeb64C | |
rgb(159, 254, 182, 60%) | #9ffeb699 | |
rgb(159, 254, 182, 80%) | #9ffeb6CC | |
rgb(159, 254, 182, 100%) | #9ffeb6FF |
Saturated and desaturated colors of #9ffeb6
HSL Code | Preview |
---|---|
hsl(135, 10%, 81%) | |
hsl(135, 20%, 81%) | |
hsl(135, 40%, 81%) | |
hsl(135, 60%, 81%) | |
hsl(135, 80%, 81%) | |
hsl(135, 100%, 81%) |
#9ffeb6 Color Usage In CSS
body { color: #9ffeb6; } p { color: rgb(159, 254, 182); } header { border-bottom:1px solid #9ffeb6; }