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