#abefb0 Color
Color Codes | |
---|---|
Hex Code | #abefb0 |
RGB Code | rgb(171, 239, 176) |
HSL Code | hsl(124, 68%, 80%) |
#abefb0 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(171, 239, 176); }
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(124, 68%, 80%); }
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 #abefb0
RGB Code | Hex Code | Preview |
---|---|---|
rgb(171, 239, 176, 10%) | #abefb01a | |
rgb(171, 239, 176, 20%) | #abefb033 | |
rgb(171, 239, 176, 40%) | #abefb04C | |
rgb(171, 239, 176, 60%) | #abefb099 | |
rgb(171, 239, 176, 80%) | #abefb0CC | |
rgb(171, 239, 176, 100%) | #abefb0FF |
Saturated and desaturated colors of #abefb0
HSL Code | Preview |
---|---|
hsl(124, 10%, 80%) | |
hsl(124, 20%, 80%) | |
hsl(124, 40%, 80%) | |
hsl(124, 60%, 80%) | |
hsl(124, 80%, 80%) | |
hsl(124, 100%, 80%) |
#abefb0 Color Usage In CSS
body { color: #abefb0; } p { color: rgb(171, 239, 176); } header { border-bottom:1px solid #abefb0; }