Color Values
- HEX
- #EA580C
- RGB
- rgb(234, 88, 12)
- HSL
- hsl(21, 90%, 48%)
- OKLCH
- oklch(0.646 0.194 41)
- CMYK
- cmyk(0%, 62%, 95%, 8%)
- CSS Variable
- var(--color-orange-600)
- Tailwind Class
- bg-orange-600
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
3.56:1
On Black
5.9:1
Tailwind Usage — All Utilities
Background
bg-orange-600Text
text-orange-600Border
border-orange-600Ring
ring-orange-600Outline
outline-orange-600Fill
fill-orange-600Stroke
stroke-orange-600From (gradient)
from-orange-600Via (gradient)
via-orange-600To (gradient)
to-orange-600Placeholder
placeholder-orange-600Caret
caret-orange-600Accent
accent-orange-600Decoration
decoration-orange-600Shadow Color
shadow-orange-600Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'orange-600': '#ea580c',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #EA580C;
/* RGB */
background-color: rgb(234, 88, 12);
/* HSL */
background-color: hsl(21, 90%, 48%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.646 0.194 41);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-orange-600);
/* Gradient example */
background: linear-gradient(135deg, #fff7ed 0%, #c2410c 100%);OKLCH — Modern Color Space
Lightness (L)
0.646
65% perceived brightness
Chroma (C)
0.194
Color intensity / saturation
Hue (H)
41°
Angle on perceptual hue wheel
oklch(0.646 0.194 41)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 Orange 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 — #EA580C
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Orange 600
Nearest Tailwind equivalent — #EA580C
Frequently Asked Questions
- What is the hex code for Tailwind Orange 600?
- Tailwind Orange 600 has the hex code #EA580C. Its RGB value is rgb(234, 88, 12) and its HSL value is hsl(21, 90%, 48%).
- What Tailwind utility classes use Orange 600?
- Use bg-orange-600 for backgrounds, text-orange-600 for text color, border-orange-600 for borders, and ring-orange-600 for focus rings. In Tailwind v4 the CSS variable var(--color-orange-600) is available natively.
- Is Tailwind Orange 600 WCAG accessible?
- Tailwind Orange 600 achieves a 3.56:1 contrast ratio on white (AA Large) and 5.9:1 on black (AA). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Orange 600?
- Tailwind Orange 600 in OKLCH is oklch(0.646 0.194 41) — lightness 0.646, chroma 0.194, hue 41°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Orange 600 used for?
- At shade 600, Tailwind Orange 600 is best described as "Accessible primary action". Recommended uses: Primary buttons on white (passes AA), Active state fills, Bold text links.