Color Values
- HEX
- #134E4A
- RGB
- rgb(19, 78, 74)
- HSL
- hsl(176, 61%, 19%)
- OKLCH
- oklch(0.386 0.059 188)
- CMYK
- cmyk(76%, 0%, 5%, 69%)
- CSS Variable
- var(--color-teal-900)
- Tailwind Class
- bg-teal-900
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
9.48:1
On Black
2.22:1
Tailwind Usage — All Utilities
Background
bg-teal-900Text
text-teal-900Border
border-teal-900Ring
ring-teal-900Outline
outline-teal-900Fill
fill-teal-900Stroke
stroke-teal-900From (gradient)
from-teal-900Via (gradient)
via-teal-900To (gradient)
to-teal-900Placeholder
placeholder-teal-900Caret
caret-teal-900Accent
accent-teal-900Decoration
decoration-teal-900Shadow Color
shadow-teal-900Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'teal-900': '#134e4a',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #134E4A;
/* RGB */
background-color: rgb(19, 78, 74);
/* HSL */
background-color: hsl(176, 61%, 19%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.386 0.059 188);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-teal-900);
/* Gradient example */
background: linear-gradient(135deg, #f0fdfa 0%, #042f2e 100%);OKLCH — Modern Color Space
Lightness (L)
0.386
39% perceived brightness
Chroma (C)
0.059
Color intensity / saturation
Hue (H)
188°
Angle on perceptual hue wheel
oklch(0.386 0.059 188)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 Teal 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 — #134E4A
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Teal 900
Nearest Tailwind equivalent — #134E4A
Frequently Asked Questions
- What is the hex code for Tailwind Teal 900?
- Tailwind Teal 900 has the hex code #134E4A. Its RGB value is rgb(19, 78, 74) and its HSL value is hsl(176, 61%, 19%).
- What Tailwind utility classes use Teal 900?
- Use bg-teal-900 for backgrounds, text-teal-900 for text color, border-teal-900 for borders, and ring-teal-900 for focus rings. In Tailwind v4 the CSS variable var(--color-teal-900) is available natively.
- Is Tailwind Teal 900 WCAG accessible?
- Tailwind Teal 900 achieves a 9.48:1 contrast ratio on white (AAA) and 2.22:1 on black (Fail). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Teal 900?
- Tailwind Teal 900 in OKLCH is oklch(0.386 0.059 188) — lightness 0.386, chroma 0.059, hue 188°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Teal 900 used for?
- At shade 900, Tailwind Teal 900 is best described as "Strong dark tone". Recommended uses: Body text on white, Dark panel backgrounds, Near-dark UI elements.