Color Values
- HEX
- #FAE8FF
- RGB
- rgb(250, 232, 255)
- HSL
- hsl(287, 100%, 95%)
- OKLCH
- oklch(0.952 0.036 319)
- CMYK
- cmyk(2%, 9%, 0%, 0%)
- CSS Variable
- var(--color-fuchsia-100)
- Tailwind Class
- bg-fuchsia-100
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
1.16:1
On Black
18.05:1
Tailwind Usage — All Utilities
Background
bg-fuchsia-100Text
text-fuchsia-100Border
border-fuchsia-100Ring
ring-fuchsia-100Outline
outline-fuchsia-100Fill
fill-fuchsia-100Stroke
stroke-fuchsia-100From (gradient)
from-fuchsia-100Via (gradient)
via-fuchsia-100To (gradient)
to-fuchsia-100Placeholder
placeholder-fuchsia-100Caret
caret-fuchsia-100Accent
accent-fuchsia-100Decoration
decoration-fuchsia-100Shadow Color
shadow-fuchsia-100Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'fuchsia-100': '#fae8ff',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #FAE8FF;
/* RGB */
background-color: rgb(250, 232, 255);
/* HSL */
background-color: hsl(287, 100%, 95%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.952 0.036 319);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-fuchsia-100);
/* Gradient example */
background: linear-gradient(135deg, #fae8ff 0%, #f5d0fe 100%);OKLCH — Modern Color Space
Lightness (L)
0.952
95% perceived brightness
Chroma (C)
0.036
Color intensity / saturation
Hue (H)
319°
Angle on perceptual hue wheel
oklch(0.952 0.036 319)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 Fuchsia 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 — #FAE8FF
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Fuchsia 100
Nearest Tailwind equivalent — #FAE8FF
Frequently Asked Questions
- What is the hex code for Tailwind Fuchsia 100?
- Tailwind Fuchsia 100 has the hex code #FAE8FF. Its RGB value is rgb(250, 232, 255) and its HSL value is hsl(287, 100%, 95%).
- What Tailwind utility classes use Fuchsia 100?
- Use bg-fuchsia-100 for backgrounds, text-fuchsia-100 for text color, border-fuchsia-100 for borders, and ring-fuchsia-100 for focus rings. In Tailwind v4 the CSS variable var(--color-fuchsia-100) is available natively.
- Is Tailwind Fuchsia 100 WCAG accessible?
- Tailwind Fuchsia 100 achieves a 1.16:1 contrast ratio on white (Fail) and 18.05:1 on black (AAA). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Fuchsia 100?
- Tailwind Fuchsia 100 in OKLCH is oklch(0.952 0.036 319) — lightness 0.952, chroma 0.036, hue 319°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Fuchsia 100 used for?
- At shade 100, Tailwind Fuchsia 100 is best described as "Light surface & background". Recommended uses: Card backgrounds, Sidebar fills, Input field backgrounds.