Color Values
- HEX
- #431407
- RGB
- rgb(67, 20, 7)
- HSL
- hsl(13, 81%, 15%)
- OKLCH
- oklch(0.266 0.076 36)
- CMYK
- cmyk(0%, 70%, 90%, 74%)
- CSS Variable
- var(--color-orange-950)
- Tailwind Class
- bg-orange-950
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
15.65:1
On Black
1.34:1
Tailwind Usage — All Utilities
Background
bg-orange-950Text
text-orange-950Border
border-orange-950Ring
ring-orange-950Outline
outline-orange-950Fill
fill-orange-950Stroke
stroke-orange-950From (gradient)
from-orange-950Via (gradient)
via-orange-950To (gradient)
to-orange-950Placeholder
placeholder-orange-950Caret
caret-orange-950Accent
accent-orange-950Decoration
decoration-orange-950Shadow Color
shadow-orange-950Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'orange-950': '#431407',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #431407;
/* RGB */
background-color: rgb(67, 20, 7);
/* HSL */
background-color: hsl(13, 81%, 15%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.266 0.076 36);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-orange-950);
/* Gradient example */
background: linear-gradient(135deg, #fff7ed 0%, #431407 100%);OKLCH — Modern Color Space
Lightness (L)
0.266
27% perceived brightness
Chroma (C)
0.076
Color intensity / saturation
Hue (H)
36°
Angle on perceptual hue wheel
oklch(0.266 0.076 36)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
Ultra-dark near-black variant
Shade 950 of the Orange palette
Recommended Uses
- ✓Maximum-contrast text on white
- ✓Rich dark card backgrounds
- ✓Dark theme page backgrounds
- ✓Tinted near-black UI surfaces
Avoid
Preview
On White
Aa Bb Cc
On Black
Aa Bb Cc
As Background
Aa Bb Cc — #431407
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Orange 950
Nearest Tailwind equivalent — #431407
Frequently Asked Questions
- What is the hex code for Tailwind Orange 950?
- Tailwind Orange 950 has the hex code #431407. Its RGB value is rgb(67, 20, 7) and its HSL value is hsl(13, 81%, 15%).
- What Tailwind utility classes use Orange 950?
- Use bg-orange-950 for backgrounds, text-orange-950 for text color, border-orange-950 for borders, and ring-orange-950 for focus rings. In Tailwind v4 the CSS variable var(--color-orange-950) is available natively.
- Is Tailwind Orange 950 WCAG accessible?
- Tailwind Orange 950 achieves a 15.65:1 contrast ratio on white (AAA) and 1.34:1 on black (Fail). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Orange 950?
- Tailwind Orange 950 in OKLCH is oklch(0.266 0.076 36) — lightness 0.266, chroma 0.076, hue 36°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Orange 950 used for?
- At shade 950, Tailwind Orange 950 is best described as "Ultra-dark near-black variant". Recommended uses: Maximum-contrast text on white, Rich dark card backgrounds, Dark theme page backgrounds.