Color Values
- HEX
- #FEE2E2
- RGB
- rgb(254, 226, 226)
- HSL
- hsl(0, 93%, 94%)
- OKLCH
- oklch(0.936 0.031 18)
- CMYK
- cmyk(0%, 11%, 11%, 0%)
- CSS Variable
- var(--color-red-100)
- Tailwind Class
- bg-red-100
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
1.22:1
On Black
17.19:1
Tailwind Usage — All Utilities
Background
bg-red-100Text
text-red-100Border
border-red-100Ring
ring-red-100Outline
outline-red-100Fill
fill-red-100Stroke
stroke-red-100From (gradient)
from-red-100Via (gradient)
via-red-100To (gradient)
to-red-100Placeholder
placeholder-red-100Caret
caret-red-100Accent
accent-red-100Decoration
decoration-red-100Shadow Color
shadow-red-100Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'red-100': '#fee2e2',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #FEE2E2;
/* RGB */
background-color: rgb(254, 226, 226);
/* HSL */
background-color: hsl(0, 93%, 94%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.936 0.031 18);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-red-100);
/* Gradient example */
background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);OKLCH — Modern Color Space
Lightness (L)
0.936
94% perceived brightness
Chroma (C)
0.031
Color intensity / saturation
Hue (H)
18°
Angle on perceptual hue wheel
oklch(0.936 0.031 18)OKLCH is a perceptually uniform color space in CSS Color Level 4. Unlike HSL, equal steps in L produce equal perceived lightness changes — making it ideal for building accessible, harmonious design system scales.
Design Recommendations
Light surface & background
Shade 100 of the Red palette
Recommended Uses
- ✓Card backgrounds
- ✓Sidebar fills
- ✓Input field backgrounds
- ✓Chip & badge backgrounds
- ✓Skeleton loaders
Avoid
Preview
On White
Aa Bb Cc
On Black
Aa Bb Cc
As Background
Aa Bb Cc — #FEE2E2
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Red 100
Nearest Tailwind equivalent — #FEE2E2
Frequently Asked Questions
- What is the hex code for Tailwind Red 100?
- Tailwind Red 100 has the hex code #FEE2E2. Its RGB value is rgb(254, 226, 226) and its HSL value is hsl(0, 93%, 94%).
- What Tailwind utility classes use Red 100?
- Use bg-red-100 for backgrounds, text-red-100 for text color, border-red-100 for borders, and ring-red-100 for focus rings. In Tailwind v4 the CSS variable var(--color-red-100) is available natively.
- Is Tailwind Red 100 WCAG accessible?
- Tailwind Red 100 achieves a 1.22:1 contrast ratio on white (Fail) and 17.19:1 on black (AAA). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Red 100?
- Tailwind Red 100 in OKLCH is oklch(0.936 0.031 18) — lightness 0.936, chroma 0.031, hue 18°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Red 100 used for?
- At shade 100, Tailwind Red 100 is best described as "Light surface & background". Recommended uses: Card backgrounds, Sidebar fills, Input field backgrounds.