Skip to main content

bg-fuchsia-300

Tailwind Fuchsia 300

#F0ABFC·Fuchsia family·Shade 300

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

60/100

Good

Based on WCAG 2.1 contrast ratios against white and black backgrounds.

On White

1.76:1

Fail

On Black

11.94:1

AAA
Test in Contrast Checker →

Tailwind Usage — All Utilities

Background

bg-fuchsia-300

Text

text-fuchsia-300

Border

border-fuchsia-300

Ring

ring-fuchsia-300

Outline

outline-fuchsia-300

Fill

fill-fuchsia-300

Stroke

stroke-fuchsia-300

From (gradient)

from-fuchsia-300

Via (gradient)

via-fuchsia-300

To (gradient)

to-fuchsia-300

Placeholder

placeholder-fuchsia-300

Caret

caret-fuchsia-300

Accent

accent-fuchsia-300

Decoration

decoration-fuchsia-300

Shadow Color

shadow-fuchsia-300

Tailwind 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

Normal-size text on white — generally below WCAG AA threshold.

Preview

On White

Aa Bb Cc

On Black

Aa Bb Cc

As Background

Aa Bb Cc — #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.