Skip to main content

bg-teal-900

Tailwind Teal 900

#134E4A·Teal family·Shade 900

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

60/100

Good

Based on WCAG 2.1 contrast ratios against white and black backgrounds.

On White

9.48:1

AAA

On Black

2.22:1

Fail
Test in Contrast Checker →

Tailwind Usage — All Utilities

Background

bg-teal-900

Text

text-teal-900

Border

border-teal-900

Ring

ring-teal-900

Outline

outline-teal-900

Fill

fill-teal-900

Stroke

stroke-teal-900

From (gradient)

from-teal-900

Via (gradient)

via-teal-900

To (gradient)

to-teal-900

Placeholder

placeholder-teal-900

Caret

caret-teal-900

Accent

accent-teal-900

Decoration

decoration-teal-900

Shadow Color

shadow-teal-900

Tailwind 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

On dark backgrounds — contrast will be insufficient.

Preview

On White

Aa Bb Cc

On Black

Aa Bb Cc

As Background

Aa Bb Cc — #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.