Color Values
- HEX
- #064E3B
- RGB
- rgb(6, 78, 59)
- HSL
- hsl(164, 86%, 16%)
- OKLCH
- oklch(0.378 0.073 169)
- CMYK
- cmyk(92%, 0%, 24%, 69%)
- CSS Variable
- var(--color-emerald-900)
- Tailwind Class
- bg-emerald-900
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
9.72:1
On Black
2.16:1
Tailwind Usage — All Utilities
Background
bg-emerald-900Text
text-emerald-900Border
border-emerald-900Ring
ring-emerald-900Outline
outline-emerald-900Fill
fill-emerald-900Stroke
stroke-emerald-900From (gradient)
from-emerald-900Via (gradient)
via-emerald-900To (gradient)
to-emerald-900Placeholder
placeholder-emerald-900Caret
caret-emerald-900Accent
accent-emerald-900Decoration
decoration-emerald-900Shadow Color
shadow-emerald-900Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'emerald-900': '#064e3b',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #064E3B;
/* RGB */
background-color: rgb(6, 78, 59);
/* HSL */
background-color: hsl(164, 86%, 16%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.378 0.073 169);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-emerald-900);
/* Gradient example */
background: linear-gradient(135deg, #ecfdf5 0%, #022c22 100%);OKLCH — Modern Color Space
Lightness (L)
0.378
38% perceived brightness
Chroma (C)
0.073
Color intensity / saturation
Hue (H)
169°
Angle on perceptual hue wheel
oklch(0.378 0.073 169)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
Strong dark tone
Shade 900 of the Emerald palette
Recommended Uses
- ✓Body text on white
- ✓Dark panel backgrounds
- ✓Near-dark UI elements
- ✓Footer backgrounds
- ✓High-contrast headings
Avoid
Preview
On White
Aa Bb Cc
On Black
Aa Bb Cc
As Background
Aa Bb Cc — #064E3B
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Emerald 900
Nearest Tailwind equivalent — #064E3B
Frequently Asked Questions
- What is the hex code for Tailwind Emerald 900?
- Tailwind Emerald 900 has the hex code #064E3B. Its RGB value is rgb(6, 78, 59) and its HSL value is hsl(164, 86%, 16%).
- What Tailwind utility classes use Emerald 900?
- Use bg-emerald-900 for backgrounds, text-emerald-900 for text color, border-emerald-900 for borders, and ring-emerald-900 for focus rings. In Tailwind v4 the CSS variable var(--color-emerald-900) is available natively.
- Is Tailwind Emerald 900 WCAG accessible?
- Tailwind Emerald 900 achieves a 9.72:1 contrast ratio on white (AAA) and 2.16:1 on black (Fail). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Emerald 900?
- Tailwind Emerald 900 in OKLCH is oklch(0.378 0.073 169) — lightness 0.378, chroma 0.073, hue 169°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Emerald 900 used for?
- At shade 900, Tailwind Emerald 900 is best described as "Strong dark tone". Recommended uses: Body text on white, Dark panel backgrounds, Near-dark UI elements.