Skip to main content

bg-teal-50

Tailwind Teal 50

#F0FDFA·Teal family·Shade 50

Color Values

HEX
#F0FDFA
RGB
rgb(240, 253, 250)
HSL
hsl(166, 76%, 97%)
OKLCH
oklch(0.984 0.014 181)
CMYK
cmyk(5%, 0%, 1%, 1%)
CSS Variable
var(--color-teal-50)
Tailwind Class
bg-teal-50

Accessibility Score

60/100

Good

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

On White

1.04:1

Fail

On Black

20.14:1

AAA
Test in Contrast Checker →

Tailwind Usage — All Utilities

Background

bg-teal-50

Text

text-teal-50

Border

border-teal-50

Ring

ring-teal-50

Outline

outline-teal-50

Fill

fill-teal-50

Stroke

stroke-teal-50

From (gradient)

from-teal-50

Via (gradient)

via-teal-50

To (gradient)

to-teal-50

Placeholder

placeholder-teal-50

Caret

caret-teal-50

Accent

accent-teal-50

Decoration

decoration-teal-50

Shadow Color

shadow-teal-50

Tailwind v3 Config (extend custom color)

// tailwind.config.js module.exports = { theme: { extend: { colors: { 'teal-50': '#f0fdfa', }, }, }, };

CSS Equivalent

/* Hex */
background-color: #F0FDFA;

/* RGB */
background-color: rgb(240, 253, 250);

/* HSL */
background-color: hsl(166, 76%, 97%);

/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.984 0.014 181);

/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-teal-50);

/* Gradient example */
background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);

OKLCH — Modern Color Space

Lightness (L)

0.984

98% perceived brightness

Chroma (C)

0.014

Color intensity / saturation

Hue (H)

181°

Angle on perceptual hue wheel

oklch(0.984 0.014 181)

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-light background tint

Shade 50 of the Teal palette

Recommended Uses

  • Page backgrounds
  • Subtle section fills
  • Notification banners
  • Hover state backgrounds
  • Table row alternates

Avoid

Text on white — contrast is too low for readability.

Preview

On White

Aa Bb Cc

On Black

Aa Bb Cc

As Background

Aa Bb Cc — #F0FDFA

Frequently Asked Questions

What is the hex code for Tailwind Teal 50?
Tailwind Teal 50 has the hex code #F0FDFA. Its RGB value is rgb(240, 253, 250) and its HSL value is hsl(166, 76%, 97%).
What Tailwind utility classes use Teal 50?
Use bg-teal-50 for backgrounds, text-teal-50 for text color, border-teal-50 for borders, and ring-teal-50 for focus rings. In Tailwind v4 the CSS variable var(--color-teal-50) is available natively.
Is Tailwind Teal 50 WCAG accessible?
Tailwind Teal 50 achieves a 1.04:1 contrast ratio on white (Fail) and 20.14:1 on black (AAA). Its overall accessibility score is 60/100 (Good).
What is the OKLCH value for Tailwind Teal 50?
Tailwind Teal 50 in OKLCH is oklch(0.984 0.014 181) — lightness 0.984, chroma 0.014, hue 181°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
What is Tailwind Teal 50 used for?
At shade 50, Tailwind Teal 50 is best described as "Ultra-light background tint". Recommended uses: Page backgrounds, Subtle section fills, Notification banners.