#67E8F9 color
The swatch above shows #67E8F9 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.
#67E8F9 is a light, vivid cyan, closest to the CSS named color aquamarine (#7FFFD4).
It is also a Tailwind CSS default: cyan-300. That means you can write bg-cyan-300 or text-cyan-300 directly, with no arbitrary-value brackets and no entry in your theme config.
Color values
| HEX | #67E8F9 |
| RGB | rgb(103, 232, 249) |
| HSL | hsl(187, 92%, 69%) |
| CMYK | cmyk(59%, 7%, 0%, 2%) |
| Decimal | 6809849 |
| CSS | color: #67E8F9; |
| Android | 0xFF67E8F9 |
| Swift | UIColor(red: 0.404, green: 0.910, blue: 0.976, alpha: 1) |
Accessibility and contrast
| White text on #67E8F9 | 1.45:1 — AA fail · AA large fail · AAA fail |
| Black text on #67E8F9 | 14.49: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 #67E8F9
Each swatch keeps the hue and saturation of #67E8F9 and varies only lightness — the quickest way to build a usable scale from a single brand color.
Colors that go with #67E8F9
Harmonies generated by rotating the hue on the color wheel while holding saturation and lightness constant.
Using #67E8F9 in code
/* CSS */
.element { color: #67E8F9; background-color: #67E8F9; }
.element { color: rgb(103 232 249); }
.element { color: hsl(187 92% 69%); }
/* Tailwind */
<div class="bg-cyan-300 text-black">
/* SCSS variable */
$brand: #67E8F9;
Frequently asked questions
What color is #67E8F9?
#67E8F9 is a light, vivid cyan. Its hue sits at 187° on the color wheel, with 92% saturation and 69% lightness.
What is #67E8F9 in RGB?
#67E8F9 converts to rgb(103, 232, 249) — 103 red, 232 green and 249 blue.
What is #67E8F9 in CMYK?
Approximately cmyk(59%, 7%, 0%, 2%). 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 #67E8F9 be white or black?
Black gives the better contrast ratio (14.49:1 versus 1.45:1).
What is the complementary color of #67E8F9?
#F97867 — the hue directly opposite #67E8F9 on the color wheel.