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