Color Values
- HEX
- #C026D3
- RGB
- rgb(192, 38, 211)
- HSL
- hsl(293, 69%, 49%)
- OKLCH
- oklch(0.591 0.257 323)
- CMYK
- cmyk(9%, 82%, 0%, 17%)
- CSS Variable
- var(--color-fuchsia-600)
- Tailwind Class
- bg-fuchsia-600
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
4.71:1
On Black
4.46:1
Tailwind Usage — All Utilities
Background
bg-fuchsia-600Text
text-fuchsia-600Border
border-fuchsia-600Ring
ring-fuchsia-600Outline
outline-fuchsia-600Fill
fill-fuchsia-600Stroke
stroke-fuchsia-600From (gradient)
from-fuchsia-600Via (gradient)
via-fuchsia-600To (gradient)
to-fuchsia-600Placeholder
placeholder-fuchsia-600Caret
caret-fuchsia-600Accent
accent-fuchsia-600Decoration
decoration-fuchsia-600Shadow Color
shadow-fuchsia-600Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'fuchsia-600': '#c026d3',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #C026D3;
/* RGB */
background-color: rgb(192, 38, 211);
/* HSL */
background-color: hsl(293, 69%, 49%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.591 0.257 323);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-fuchsia-600);
/* Gradient example */
background: linear-gradient(135deg, #fdf4ff 0%, #a21caf 100%);OKLCH — Modern Color Space
Lightness (L)
0.591
59% perceived brightness
Chroma (C)
0.257
Color intensity / saturation
Hue (H)
323°
Angle on perceptual hue wheel
oklch(0.591 0.257 323)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
Accessible primary action
Shade 600 of the Fuchsia palette
Recommended Uses
- ✓Primary buttons on white (passes AA)
- ✓Active state fills
- ✓Bold text links
- ✓Form borders on focus
- ✓Strong icon fills
Avoid
Preview
On White
Aa Bb Cc
On Black
Aa Bb Cc
As Background
Aa Bb Cc — #C026D3
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Fuchsia 600
Nearest Tailwind equivalent — #C026D3
Frequently Asked Questions
- What is the hex code for Tailwind Fuchsia 600?
- Tailwind Fuchsia 600 has the hex code #C026D3. Its RGB value is rgb(192, 38, 211) and its HSL value is hsl(293, 69%, 49%).
- What Tailwind utility classes use Fuchsia 600?
- Use bg-fuchsia-600 for backgrounds, text-fuchsia-600 for text color, border-fuchsia-600 for borders, and ring-fuchsia-600 for focus rings. In Tailwind v4 the CSS variable var(--color-fuchsia-600) is available natively.
- Is Tailwind Fuchsia 600 WCAG accessible?
- Tailwind Fuchsia 600 achieves a 4.71:1 contrast ratio on white (AA) and 4.46:1 on black (AA Large). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Fuchsia 600?
- Tailwind Fuchsia 600 in OKLCH is oklch(0.591 0.257 323) — lightness 0.591, chroma 0.257, hue 323°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Fuchsia 600 used for?
- At shade 600, Tailwind Fuchsia 600 is best described as "Accessible primary action". Recommended uses: Primary buttons on white (passes AA), Active state fills, Bold text links.