#FBCFE8 color
The swatch above shows #FBCFE8 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.
#FBCFE8 is a very light, vivid magenta, closest to the CSS named color pink (#FFC0CB).
It is also a Tailwind CSS default: pink-200. That means you can write bg-pink-200 or text-pink-200 directly, with no arbitrary-value brackets and no entry in your theme config.
Color values
| HEX | #FBCFE8 |
| RGB | rgb(251, 207, 232) |
| HSL | hsl(326, 85%, 90%) |
| CMYK | cmyk(0%, 18%, 8%, 2%) |
| Decimal | 16502760 |
| CSS | color: #FBCFE8; |
| Android | 0xFFFBCFE8 |
| Swift | UIColor(red: 0.984, green: 0.812, blue: 0.910, alpha: 1) |
Accessibility and contrast
| White text on #FBCFE8 | 1.38:1 — AA fail · AA large fail · AAA fail |
| Black text on #FBCFE8 | 15.19: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 #FBCFE8
Each swatch keeps the hue and saturation of #FBCFE8 and varies only lightness — the quickest way to build a usable scale from a single brand color.
Colors that go with #FBCFE8
Harmonies generated by rotating the hue on the color wheel while holding saturation and lightness constant.
Using #FBCFE8 in code
/* CSS */
.element { color: #FBCFE8; background-color: #FBCFE8; }
.element { color: rgb(251 207 232); }
.element { color: hsl(326 85% 90%); }
/* Tailwind */
<div class="bg-pink-200 text-black">
/* SCSS variable */
$brand: #FBCFE8;
Frequently asked questions
What color is #FBCFE8?
#FBCFE8 is a very light, vivid magenta. Its hue sits at 326° on the color wheel, with 85% saturation and 90% lightness.
What is #FBCFE8 in RGB?
#FBCFE8 converts to rgb(251, 207, 232) — 251 red, 207 green and 232 blue.
What is #FBCFE8 in CMYK?
Approximately cmyk(0%, 18%, 8%, 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 #FBCFE8 be white or black?
Black gives the better contrast ratio (15.19:1 versus 1.38:1).
What is the complementary color of #FBCFE8?
#D0FBE3 — the hue directly opposite #FBCFE8 on the color wheel.