Color Values
- HEX
- #FDF4FF
- RGB
- rgb(253, 244, 255)
- HSL
- hsl(289, 100%, 98%)
- OKLCH
- oklch(0.977 0.017 320)
- CMYK
- cmyk(1%, 4%, 0%, 0%)
- CSS Variable
- var(--color-fuchsia-50)
- Tailwind Class
- bg-fuchsia-50
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
1.07:1
On Black
19.56:1
Tailwind Usage — All Utilities
Background
bg-fuchsia-50Text
text-fuchsia-50Border
border-fuchsia-50Ring
ring-fuchsia-50Outline
outline-fuchsia-50Fill
fill-fuchsia-50Stroke
stroke-fuchsia-50From (gradient)
from-fuchsia-50Via (gradient)
via-fuchsia-50To (gradient)
to-fuchsia-50Placeholder
placeholder-fuchsia-50Caret
caret-fuchsia-50Accent
accent-fuchsia-50Decoration
decoration-fuchsia-50Shadow Color
shadow-fuchsia-50Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'fuchsia-50': '#fdf4ff',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #FDF4FF;
/* RGB */
background-color: rgb(253, 244, 255);
/* HSL */
background-color: hsl(289, 100%, 98%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.977 0.017 320);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-fuchsia-50);
/* Gradient example */
background: linear-gradient(135deg, #fdf4ff 0%, #fae8ff 100%);OKLCH — Modern Color Space
Lightness (L)
0.977
98% perceived brightness
Chroma (C)
0.017
Color intensity / saturation
Hue (H)
320°
Angle on perceptual hue wheel
oklch(0.977 0.017 320)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
Ultra-light background tint
Shade 50 of the Fuchsia palette
Recommended Uses
- ✓Page backgrounds
- ✓Subtle section fills
- ✓Notification banners
- ✓Hover state backgrounds
- ✓Table row alternates
Avoid
Preview
On White
Aa Bb Cc
On Black
Aa Bb Cc
As Background
Aa Bb Cc — #FDF4FF
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Fuchsia 50
Nearest Tailwind equivalent — #FDF4FF
Frequently Asked Questions
- What is the hex code for Tailwind Fuchsia 50?
- Tailwind Fuchsia 50 has the hex code #FDF4FF. Its RGB value is rgb(253, 244, 255) and its HSL value is hsl(289, 100%, 98%).
- What Tailwind utility classes use Fuchsia 50?
- Use bg-fuchsia-50 for backgrounds, text-fuchsia-50 for text color, border-fuchsia-50 for borders, and ring-fuchsia-50 for focus rings. In Tailwind v4 the CSS variable var(--color-fuchsia-50) is available natively.
- Is Tailwind Fuchsia 50 WCAG accessible?
- Tailwind Fuchsia 50 achieves a 1.07:1 contrast ratio on white (Fail) and 19.56:1 on black (AAA). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Fuchsia 50?
- Tailwind Fuchsia 50 in OKLCH is oklch(0.977 0.017 320) — lightness 0.977, chroma 0.017, hue 320°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Fuchsia 50 used for?
- At shade 50, Tailwind Fuchsia 50 is best described as "Ultra-light background tint". Recommended uses: Page backgrounds, Subtle section fills, Notification banners.