#A7F3D0 color
The swatch above shows #A7F3D0 with its hex code written on it in white and in black, so you can see which of the two is legible before reading the measured ratios below.
#A7F3D0 is a very light, vivid green, closest to the CSS named color paleturquoise (#AFEEEE).
It is also a Tailwind CSS default: emerald-200. That means you can write bg-emerald-200 or text-emerald-200 directly, with no arbitrary-value brackets and no entry in your theme config.
Color values
| HEX | #A7F3D0 |
| RGB | rgb(167, 243, 208) |
| HSL | hsl(152, 76%, 80%) |
| CMYK | cmyk(31%, 0%, 14%, 5%) |
| Decimal | 11006928 |
| CSS | color: #A7F3D0; |
| Android | 0xFFA7F3D0 |
| Swift | UIColor(red: 0.655, green: 0.953, blue: 0.816, alpha: 1) |
Accessibility and contrast
| White text on #A7F3D0 | 1.28:1 — AA fail · AA large fail · AAA fail |
| Black text on #A7F3D0 | 16.37:1 — AA pass · AA large pass · AAA pass |
| Recommended text color | black |
WCAG 2.1 asks for at least 4.5:1 for body text and 3:1 for large text (18 pt, or 14 pt bold).
Tints and shades of #A7F3D0
Each swatch keeps the hue and saturation of #A7F3D0 and varies only lightness — the quickest way to build a usable scale from a single brand color.
Colors that go with #A7F3D0
Harmonies generated by rotating the hue on the color wheel while holding saturation and lightness constant.
Using #A7F3D0 in code
/* CSS */
.element { color: #A7F3D0; background-color: #A7F3D0; }
.element { color: rgb(167 243 208); }
.element { color: hsl(152 76% 80%); }
/* Tailwind */
<div class="bg-emerald-200 text-black">
/* SCSS variable */
$brand: #A7F3D0;
Frequently asked questions
What color is #A7F3D0?
#A7F3D0 is a very light, vivid green. Its hue sits at 152° on the color wheel, with 76% saturation and 80% lightness.
What is #A7F3D0 in RGB?
#A7F3D0 converts to rgb(167, 243, 208) — 167 red, 243 green and 208 blue.
What is #A7F3D0 in CMYK?
Approximately cmyk(31%, 0%, 14%, 5%). Print output depends on the ICC profile of the press and paper, so treat this as a starting point rather than an exact match.
Should text on #A7F3D0 be white or black?
Black gives the better contrast ratio (16.37:1 versus 1.28:1).
What is the complementary color of #A7F3D0?
#F3A5C9 — the hue directly opposite #A7F3D0 on the color wheel.