Skip to content

Tailwind CSS v4 default palette

Tailwind rose-100: #FFE4E6

In Tailwind CSS v4, rose-100 is defined as --color-rose-100: oklch(94.1% 0.03 12.58), which is #FFE4E6 in hex and rgb(255, 228, 230): an off-white with a pink tint. In Tailwind v3, rose-100 was #FFE4E6.

rose-100#FFE4E6

In OKLCH, rose-100 has a lightness of 94.1%, chroma 0.030 and hue 12.6°.

This OKLCH value lies outside sRGB. The hex #FFE4E6 is the sRGB fallback from the CSS Color 4 gamut mapping algorithm; on Display P3 screens browsers show a more saturated color, close to color(display-p3 0.9822 0.8972 0.9026).

In v3, rose-100 was #FFE4E6. The v4 value is ΔE OK 0.0 away, below the point where most people can tell them apart.

Tailwind rose is a warm pink-red between pink and red, often used as a softer alternative to red for destructive actions.

Color codes for rose-100

Color codes for rose-100
Tailwind v4 token--color-rose-100
OKLCH (source value)oklch(94.1% 0.03 12.58)
HEX#FFE4E6
RGBrgb(255, 228, 230)
HSLhsl(356, 100%, 95%)
HWBhwb(356 89% 0%)
CMYK (naive, no ICC profile)cmyk(0%, 11%, 10%, 0%)
Decimal16,770,278
Display P3color(display-p3 0.9822 0.8972 0.9026)
Tailwind v3 hex#FFE4E6
Utility classesbg-rose-100, text-rose-100, border-rose-100

Tailwind rose scale

Contrast and accessibility

On rose-100, black text has a contrast ratio of 17.49:1 and passes AAA at any text size; white text reaches 1.20: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 rose-10017.49:1PassPassPassPass93.8
White text on rose-1001.20:1FailFailFailFail−11.4
Rose-100 text on white1.20:1FailFailFailFail9.8
Rose-100 text on black17.49:1PassPassPassPass−94.4

Tints and shades

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

Tints (mixed with white)

  1. 5%
    #ffe5e7
  2. 15%
    #ffe8ea
  3. 25%
    #ffebec
  4. 35%
    #ffedef
  5. 45%
    #fff0f1
  6. 55%
    #fff3f4
  7. 65%
    #fff6f6
  8. 75%
    #fff8f9
  9. 85%
    #fffbfb
  10. 95%
    #fffefe

Shades (mixed with black)

  1. 5%
    #f2d9db
  2. 15%
    #d9c2c4
  3. 25%
    #bfabad
  4. 35%
    #a69496
  5. 45%
    #8c7d7f
  6. 55%
    #736767
  7. 65%
    #595051
  8. 75%
    #40393a
  9. 85%
    #262223
  10. 95%
    #0d0b0c

Color harmonies

Rotating the hue in OKLCH while keeping lightness and chroma, rose-100's complementary color is #D6F2F1 (close to lightcyan), its analogous colors are #FBE4F1 and #FEE6DC, and its triadic partners are #E4F0DC and #DEEDFF. For text on top, black gives the higher contrast.

Color harmonies
HarmonyRotationColor
Complementary+180°#d6f2f1
Analogous−30°, +30°#fbe4f1#fee6dc
Triadic+120°, +240°#e4f0dc#deedff
Split-complementary+150°, +210°#dbf2e6#d7f1fa

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 rose-100 is a warm color: its hue is 356° on the HSL wheel, in the red, orange and yellow range (0° to about 70°, plus reds above 330°) that is conventionally called warm.

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
mistyrose#ffe4e10.7
lavenderblush#fff0f53.1
linen#faf0e63.1

Nearest Tailwind v4 colors

Nearest Tailwind v4 colors
ColorHEXΔE OK
red-100#ffe2e20.6
pink-100#fce7f31.7
taupe-200#e8e4e33.2

Code snippets

Tailwind CSS
<div class="bg-rose-100 text-black">...</div>
<p class="text-rose-100 border-rose-100">...</p>
CSS
.element {
  color: var(--color-rose-100);
  background-color: oklch(94.1% 0.03 12.58);
  border-color: #ffe4e6;
  outline-color: rgb(255 228 230);
}
SwiftUI
import SwiftUI

extension Color {
  static let rose100 = Color(red: 1.000, green: 0.894, blue: 0.902)
}
Jetpack Compose
import androidx.compose.ui.graphics.Color

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

const rose100 = Color(0xFFFFE4E6);
Android XML
<!-- res/values/colors.xml -->
<color name="rose_100">#FFE4E6</color>

Frequently asked questions

What is the hex code for Tailwind rose-100?
In Tailwind CSS v4, rose-100 is oklch(94.1% 0.03 12.58), which converts to #FFE4E6 (rgb(255, 228, 230)) in sRGB after gamut mapping, because the OKLCH value is outside sRGB. In Tailwind v3 the same name was #FFE4E6.
What is the difference between rose-100 in Tailwind v3 and v4?
v3 used the hex #FFE4E6; v4 redefined the palette in OKLCH as oklch(94.1% 0.03 12.58). In v3, rose-100 was #FFE4E6. The v4 value is ΔE OK 0.0 away, below the point where most people can tell them apart.
How do I use rose-100 in plain CSS?
Tailwind v4 defines every palette color as a theme variable, so in CSS you write var(--color-rose-100). By default Tailwind only emits the variables your project uses; @theme static emits all of them.
Can you use white text on rose-100?
White text on rose-100 has a contrast ratio of 1.20:1, which fails AA even for large text under WCAG 2.2. Black text reaches 17.49:1 and passes both AA and AAA. In APCA terms that is Lc −11.4 for white and Lc 93.8 for black.
Which CSS named color is closest to rose-100?
The closest is mistyrose (#FFE4E1) at ΔE OK 0.7, followed by lavenderblush and linen.

Last reviewed by Arielton Oberek.