Color Values
- HEX
- #2DD4BF
- RGB
- rgb(45, 212, 191)
- HSL
- hsl(172, 66%, 50%)
- OKLCH
- oklch(0.785 0.133 182)
- CMYK
- cmyk(79%, 0%, 10%, 17%)
- CSS Variable
- var(--color-teal-400)
- Tailwind Class
- bg-teal-400
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
1.86:1
On Black
11.28:1
Tailwind Usage — All Utilities
Background
bg-teal-400Text
text-teal-400Border
border-teal-400Ring
ring-teal-400Outline
outline-teal-400Fill
fill-teal-400Stroke
stroke-teal-400From (gradient)
from-teal-400Via (gradient)
via-teal-400To (gradient)
to-teal-400Placeholder
placeholder-teal-400Caret
caret-teal-400Accent
accent-teal-400Decoration
decoration-teal-400Shadow Color
shadow-teal-400Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'teal-400': '#2dd4bf',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #2DD4BF;
/* RGB */
background-color: rgb(45, 212, 191);
/* HSL */
background-color: hsl(172, 66%, 50%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.785 0.133 182);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-teal-400);
/* Gradient example */
background: linear-gradient(135deg, #f0fdfa 0%, #14b8a6 100%);OKLCH — Modern Color Space
Lightness (L)
0.785
79% perceived brightness
Chroma (C)
0.133
Color intensity / saturation
Hue (H)
182°
Angle on perceptual hue wheel
oklch(0.785 0.133 182)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
Mid-tone accent
Shade 400 of the Teal palette
Recommended Uses
- ✓Icon fills on white
- ✓Secondary buttons (large text)
- ✓Chart & data visualization bars
- ✓Decorative UI elements
Avoid
Preview
On White
Aa Bb Cc
On Black
Aa Bb Cc
As Background
Aa Bb Cc — #2DD4BF
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Teal 400
Nearest Tailwind equivalent — #2DD4BF
Frequently Asked Questions
- What is the hex code for Tailwind Teal 400?
- Tailwind Teal 400 has the hex code #2DD4BF. Its RGB value is rgb(45, 212, 191) and its HSL value is hsl(172, 66%, 50%).
- What Tailwind utility classes use Teal 400?
- Use bg-teal-400 for backgrounds, text-teal-400 for text color, border-teal-400 for borders, and ring-teal-400 for focus rings. In Tailwind v4 the CSS variable var(--color-teal-400) is available natively.
- Is Tailwind Teal 400 WCAG accessible?
- Tailwind Teal 400 achieves a 1.86:1 contrast ratio on white (Fail) and 11.28:1 on black (AAA). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Teal 400?
- Tailwind Teal 400 in OKLCH is oklch(0.785 0.133 182) — lightness 0.785, chroma 0.133, hue 182°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Teal 400 used for?
- At shade 400, Tailwind Teal 400 is best described as "Mid-tone accent". Recommended uses: Icon fills on white, Secondary buttons (large text), Chart & data visualization bars.