Color Values
- HEX
- #9A3412
- RGB
- rgb(154, 52, 18)
- HSL
- hsl(15, 79%, 34%)
- OKLCH
- oklch(0.470 0.143 37)
- CMYK
- cmyk(0%, 66%, 88%, 40%)
- CSS Variable
- var(--color-orange-800)
- Tailwind Class
- bg-orange-800
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
7.31:1
On Black
2.87:1
Tailwind Usage — All Utilities
Background
bg-orange-800Text
text-orange-800Border
border-orange-800Ring
ring-orange-800Outline
outline-orange-800Fill
fill-orange-800Stroke
stroke-orange-800From (gradient)
from-orange-800Via (gradient)
via-orange-800To (gradient)
to-orange-800Placeholder
placeholder-orange-800Caret
caret-orange-800Accent
accent-orange-800Decoration
decoration-orange-800Shadow Color
shadow-orange-800Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'orange-800': '#9a3412',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #9A3412;
/* RGB */
background-color: rgb(154, 52, 18);
/* HSL */
background-color: hsl(15, 79%, 34%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.470 0.143 37);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-orange-800);
/* Gradient example */
background: linear-gradient(135deg, #fff7ed 0%, #7c2d12 100%);OKLCH — Modern Color Space
Lightness (L)
0.470
47% perceived brightness
Chroma (C)
0.143
Color intensity / saturation
Hue (H)
37°
Angle on perceptual hue wheel
oklch(0.470 0.143 37)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
Deep tone for text & UI
Shade 800 of the Orange palette
Recommended Uses
- ✓Heading text on white
- ✓Icon fills on light backgrounds
- ✓Dark sidebar fills
- ✓Strong badge colors
- ✓Section dividers
Avoid
Preview
On White
Aa Bb Cc
On Black
Aa Bb Cc
As Background
Aa Bb Cc — #9A3412
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Orange 800
Nearest Tailwind equivalent — #9A3412
Frequently Asked Questions
- What is the hex code for Tailwind Orange 800?
- Tailwind Orange 800 has the hex code #9A3412. Its RGB value is rgb(154, 52, 18) and its HSL value is hsl(15, 79%, 34%).
- What Tailwind utility classes use Orange 800?
- Use bg-orange-800 for backgrounds, text-orange-800 for text color, border-orange-800 for borders, and ring-orange-800 for focus rings. In Tailwind v4 the CSS variable var(--color-orange-800) is available natively.
- Is Tailwind Orange 800 WCAG accessible?
- Tailwind Orange 800 achieves a 7.31:1 contrast ratio on white (AAA) and 2.87:1 on black (Fail). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Orange 800?
- Tailwind Orange 800 in OKLCH is oklch(0.470 0.143 37) — lightness 0.470, chroma 0.143, hue 37°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Orange 800 used for?
- At shade 800, Tailwind Orange 800 is best described as "Deep tone for text & UI". Recommended uses: Heading text on white, Icon fills on light backgrounds, Dark sidebar fills.