Color Values
- HEX
- #F0ABFC
- RGB
- rgb(240, 171, 252)
- HSL
- hsl(291, 93%, 83%)
- OKLCH
- oklch(0.833 0.132 321)
- CMYK
- cmyk(5%, 32%, 0%, 1%)
- CSS Variable
- var(--color-fuchsia-300)
- Tailwind Class
- bg-fuchsia-300
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
1.76:1
On Black
11.94:1
Tailwind Usage — All Utilities
Background
bg-fuchsia-300Text
text-fuchsia-300Border
border-fuchsia-300Ring
ring-fuchsia-300Outline
outline-fuchsia-300Fill
fill-fuchsia-300Stroke
stroke-fuchsia-300From (gradient)
from-fuchsia-300Via (gradient)
via-fuchsia-300To (gradient)
to-fuchsia-300Placeholder
placeholder-fuchsia-300Caret
caret-fuchsia-300Accent
accent-fuchsia-300Decoration
decoration-fuchsia-300Shadow Color
shadow-fuchsia-300Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'fuchsia-300': '#f0abfc',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #F0ABFC;
/* RGB */
background-color: rgb(240, 171, 252);
/* HSL */
background-color: hsl(291, 93%, 83%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.833 0.132 321);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-fuchsia-300);
/* Gradient example */
background: linear-gradient(135deg, #fdf4ff 0%, #e879f9 100%);OKLCH — Modern Color Space
Lightness (L)
0.833
83% perceived brightness
Chroma (C)
0.132
Color intensity / saturation
Hue (H)
321°
Angle on perceptual hue wheel
oklch(0.833 0.132 321)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 mid-tone accent
Shade 300 of the Fuchsia palette
Recommended Uses
- ✓Secondary button outlines
- ✓Icon strokes on dark backgrounds
- ✓Progress bar fills
- ✓Selected state highlights
Avoid
Preview
On White
Aa Bb Cc
On Black
Aa Bb Cc
As Background
Aa Bb Cc — #F0ABFC
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Fuchsia 300
Nearest Tailwind equivalent — #F0ABFC
Frequently Asked Questions
- What is the hex code for Tailwind Fuchsia 300?
- Tailwind Fuchsia 300 has the hex code #F0ABFC. Its RGB value is rgb(240, 171, 252) and its HSL value is hsl(291, 93%, 83%).
- What Tailwind utility classes use Fuchsia 300?
- Use bg-fuchsia-300 for backgrounds, text-fuchsia-300 for text color, border-fuchsia-300 for borders, and ring-fuchsia-300 for focus rings. In Tailwind v4 the CSS variable var(--color-fuchsia-300) is available natively.
- Is Tailwind Fuchsia 300 WCAG accessible?
- Tailwind Fuchsia 300 achieves a 1.76:1 contrast ratio on white (Fail) and 11.94:1 on black (AAA). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Fuchsia 300?
- Tailwind Fuchsia 300 in OKLCH is oklch(0.833 0.132 321) — lightness 0.833, chroma 0.132, hue 321°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Fuchsia 300 used for?
- At shade 300, Tailwind Fuchsia 300 is best described as "Light mid-tone accent". Recommended uses: Secondary button outlines, Icon strokes on dark backgrounds, Progress bar fills.