#F0FDF4 color
The swatch above shows #F0FDF4 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.
#F0FDF4 is a very light, vivid green, closest to the CSS named color honeydew (#F0FFF0).
It is also a Tailwind CSS default: green-50. That means you can write bg-green-50 or text-green-50 directly, with no arbitrary-value brackets and no entry in your theme config.
Color values
| HEX | #F0FDF4 |
| RGB | rgb(240, 253, 244) |
| HSL | hsl(138, 76%, 97%) |
| CMYK | cmyk(5%, 0%, 4%, 1%) |
| Decimal | 15793652 |
| CSS | color: #F0FDF4; |
| Android | 0xFFF0FDF4 |
| Swift | UIColor(red: 0.941, green: 0.992, blue: 0.957, alpha: 1) |
Accessibility and contrast
| White text on #F0FDF4 | 1.05:1 — AA fail · AA large fail · AAA fail |
| Black text on #F0FDF4 | 20.06: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 #F0FDF4
Each swatch keeps the hue and saturation of #F0FDF4 and varies only lightness — the quickest way to build a usable scale from a single brand color.
Colors that go with #F0FDF4
Harmonies generated by rotating the hue on the color wheel while holding saturation and lightness constant.
Using #F0FDF4 in code
/* CSS */
.element { color: #F0FDF4; background-color: #F0FDF4; }
.element { color: rgb(240 253 244); }
.element { color: hsl(138 76% 97%); }
/* Tailwind */
<div class="bg-green-50 text-black">
/* SCSS variable */
$brand: #F0FDF4;
Frequently asked questions
What color is #F0FDF4?
#F0FDF4 is a very light, vivid green. Its hue sits at 138° on the color wheel, with 76% saturation and 97% lightness.
What is #F0FDF4 in RGB?
#F0FDF4 converts to rgb(240, 253, 244) — 240 red, 253 green and 244 blue.
What is #F0FDF4 in CMYK?
Approximately cmyk(5%, 0%, 4%, 1%). 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 #F0FDF4 be white or black?
Black gives the better contrast ratio (20.06:1 versus 1.05:1).
What is the complementary color of #F0FDF4?
#FDF2FA — the hue directly opposite #F0FDF4 on the color wheel.