Color Values
- HEX
- #14B8A6
- RGB
- rgb(20, 184, 166)
- HSL
- hsl(173, 80%, 40%)
- OKLCH
- oklch(0.704 0.123 182)
- CMYK
- cmyk(89%, 0%, 10%, 28%)
- CSS Variable
- var(--color-teal-500)
- Tailwind Class
- bg-teal-500
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
2.49:1
On Black
8.44:1
Tailwind Usage — All Utilities
Background
bg-teal-500Text
text-teal-500Border
border-teal-500Ring
ring-teal-500Outline
outline-teal-500Fill
fill-teal-500Stroke
stroke-teal-500From (gradient)
from-teal-500Via (gradient)
via-teal-500To (gradient)
to-teal-500Placeholder
placeholder-teal-500Caret
caret-teal-500Accent
accent-teal-500Decoration
decoration-teal-500Shadow Color
shadow-teal-500Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'teal-500': '#14b8a6',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #14B8A6;
/* RGB */
background-color: rgb(20, 184, 166);
/* HSL */
background-color: hsl(173, 80%, 40%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.704 0.123 182);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-teal-500);
/* Gradient example */
background: linear-gradient(135deg, #f0fdfa 0%, #0d9488 100%);OKLCH — Modern Color Space
Lightness (L)
0.704
70% perceived brightness
Chroma (C)
0.123
Color intensity / saturation
Hue (H)
182°
Angle on perceptual hue wheel
oklch(0.704 0.123 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
Primary brand color
Shade 500 of the Teal palette
Recommended Uses
- ✓CTA buttons
- ✓Active navigation links
- ✓Primary brand accents
- ✓Interactive element fills
- ✓Highlighted badges
Avoid
Preview
On White
Aa Bb Cc
On Black
Aa Bb Cc
As Background
Aa Bb Cc — #14B8A6
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Teal 500
Nearest Tailwind equivalent — #14B8A6
Frequently Asked Questions
- What is the hex code for Tailwind Teal 500?
- Tailwind Teal 500 has the hex code #14B8A6. Its RGB value is rgb(20, 184, 166) and its HSL value is hsl(173, 80%, 40%).
- What Tailwind utility classes use Teal 500?
- Use bg-teal-500 for backgrounds, text-teal-500 for text color, border-teal-500 for borders, and ring-teal-500 for focus rings. In Tailwind v4 the CSS variable var(--color-teal-500) is available natively.
- Is Tailwind Teal 500 WCAG accessible?
- Tailwind Teal 500 achieves a 2.49:1 contrast ratio on white (Fail) and 8.44:1 on black (AAA). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Teal 500?
- Tailwind Teal 500 in OKLCH is oklch(0.704 0.123 182) — lightness 0.704, chroma 0.123, hue 182°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Teal 500 used for?
- At shade 500, Tailwind Teal 500 is best described as "Primary brand color". Recommended uses: CTA buttons, Active navigation links, Primary brand accents.