Skip to content

Tailwind CSS v4 default palette

Tailwind pink-200: #FCCEE8

In Tailwind CSS v4, pink-200 is defined as --color-pink-200: oklch(89.9% 0.061 343.231), which is #FCCEE8 in hex and rgb(252, 206, 232): a very light, muted pink. In Tailwind v3, pink-200 was #FBCFE8.

pink-200#FCCEE8

In OKLCH, pink-200 has a lightness of 89.9%, chroma 0.061 and hue 343.2°.

The value fits inside sRGB, so the hex #FCCEE8 represents it without loss on any screen.

In v3, pink-200 was #FBCFE8. The v4 value is ΔE OK 0.2 away, below the point where most people can tell them apart.

Tailwind pink is a cool, bluish pink between fuchsia and rose.

Color codes for pink-200

Color codes for pink-200
Tailwind v4 token--color-pink-200
OKLCH (source value)oklch(89.9% 0.061 343.231)
HEX#FCCEE8
RGBrgb(252, 206, 232)
HSLhsl(326, 88%, 90%)
HWBhwb(326 81% 1%)
CMYK (naive, no ICC profile)cmyk(0%, 18%, 8%, 1%)
Decimal16,568,040
Tailwind v3 hex#FBCFE8
Utility classesbg-pink-200, text-pink-200, border-pink-200

Tailwind pink scale

Contrast and accessibility

On pink-200, black text has a contrast ratio of 15.13:1 and passes AAA at any text size; white text reaches 1.38:1.

WCAG 2.2 contrast ratios (success criteria 1.4.3 and 1.4.6: AA needs 4.5:1 for normal text and 3:1 for large text, AAA needs 7:1 and 4.5:1). APCA Lc is the lightness contrast from the APCA-W3 0.0.98G model proposed for WCAG 3; a higher absolute value is more readable, and Lc 75 is its suggested minimum for body text.

Contrast and accessibility
PairRatioAAAA largeAAAAAA largeAPCA Lc
Black text on pink-20015.13:1PassPassPassPass84.9
White text on pink-2001.38:1FailFailFailFail−21.5
Pink-200 text on white1.38:1FailFailFailFail18.8
Pink-200 text on black15.13:1PassPassPassPass−84.7

Tints and shades

Each step mixes var(--color-pink-200) with white (tints) or black (shades) in gamma-encoded sRGB, the same result as color-mix(in srgb, var(--color-pink-200), white 25%) in CSS.

Tints (mixed with white)

  1. 5%
    #fcd0e9
  2. 15%
    #fcd5eb
  3. 25%
    #fddaee
  4. 35%
    #fddff0
  5. 45%
    #fde4f2
  6. 55%
    #fee9f5
  7. 65%
    #feeef7
  8. 75%
    #fef3f9
  9. 85%
    #fff8fc
  10. 95%
    #fffdfe

Shades (mixed with black)

  1. 5%
    #efc4dc
  2. 15%
    #d6afc5
  3. 25%
    #bd9bae
  4. 35%
    #a48697
  5. 45%
    #8b7180
  6. 55%
    #715d68
  7. 65%
    #584851
  8. 75%
    #3f343a
  9. 85%
    #261f23
  10. 95%
    #0d0a0c

Color harmonies

Rotating the hue in OKLCH while keeping lightness and chroma, pink-200's complementary color is #BAEBD2 (close to paleturquoise), its analogous colors are #ECD2FB and #FFCED2, and its triadic partners are #E4E0B2 and #B2E7FC. For text on top, black gives the higher contrast.

Color harmonies
HarmonyRotationColor
Complementary+180°#baebd2
Analogous−30°, +30°#ecd2fb#ffced2
Triadic+120°, +240°#e4e0b2#b2e7fc
Split-complementary+150°, +210°#cee7be#afebe9

Computed in OKLCH: the hue is rotated by 180° (complementary), ±30° (analogous), ±120° (triadic) and 180° ±30° (split-complementary) while lightness and chroma stay fixed. Results that fall outside sRGB are brought back with the CSS Color 4 gamut mapping algorithm. Because this uses OKLCH, the values differ from tools that rotate hue in HSL, but every color keeps the same perceived lightness.

Warm or cool?

Tailwind pink-200 sits on the boundary: its hue of 326° on the HSL wheel is a magenta, which reads warm next to blues and cool next to reds and oranges.

Nearest named and Tailwind colors

Distance is ΔE OK, the Euclidean distance in OKLab multiplied by 100. Values under about 2 are hard to tell apart side by side.

Nearest CSS named colors

Nearest CSS named colors
ColorHEXΔE OK
pink#ffc0cb4.4
mistyrose#ffe4e16.0
lavender#e6e6fa6.1

Nearest Tailwind v4 colors

Nearest Tailwind v4 colors
ColorHEXΔE OK
rose-200#ffccd32.9
fuchsia-200#f6cfff3.2
purple-200#e9d4ff3.9

Code snippets

Tailwind CSS
<div class="bg-pink-200 text-black">...</div>
<p class="text-pink-200 border-pink-200">...</p>
CSS
.element {
  color: var(--color-pink-200);
  background-color: oklch(89.9% 0.061 343.231);
  border-color: #fccee8;
  outline-color: rgb(252 206 232);
}
SwiftUI
import SwiftUI

extension Color {
  static let pink200 = Color(red: 0.988, green: 0.808, blue: 0.910)
}
Jetpack Compose
import androidx.compose.ui.graphics.Color

val Pink200 = Color(0xFFFCCEE8)
Flutter
import 'package:flutter/material.dart';

const pink200 = Color(0xFFFCCEE8);
Android XML
<!-- res/values/colors.xml -->
<color name="pink_200">#FCCEE8</color>

Frequently asked questions

What is the hex code for Tailwind pink-200?
In Tailwind CSS v4, pink-200 is oklch(89.9% 0.061 343.231), which converts to #FCCEE8 (rgb(252, 206, 232)) in sRGB. In Tailwind v3 the same name was #FBCFE8.
What is the difference between pink-200 in Tailwind v3 and v4?
v3 used the hex #FBCFE8; v4 redefined the palette in OKLCH as oklch(89.9% 0.061 343.231). In v3, pink-200 was #FBCFE8. The v4 value is ΔE OK 0.2 away, below the point where most people can tell them apart.
How do I use pink-200 in plain CSS?
Tailwind v4 defines every palette color as a theme variable, so in CSS you write var(--color-pink-200). By default Tailwind only emits the variables your project uses; @theme static emits all of them.
Can you use white text on pink-200?
White text on pink-200 has a contrast ratio of 1.38:1, which fails AA even for large text under WCAG 2.2. Black text reaches 15.13:1 and passes both AA and AAA. In APCA terms that is Lc −21.5 for white and Lc 84.9 for black.
Which CSS named color is closest to pink-200?
The closest is pink (#FFC0CB) at ΔE OK 4.4, followed by mistyrose and lavender.

Last reviewed by Arielton Oberek.