Color Values
- HEX
- #0D9488
- RGB
- rgb(13, 148, 136)
- HSL
- hsl(175, 84%, 32%)
- OKLCH
- oklch(0.600 0.104 185)
- CMYK
- cmyk(91%, 0%, 8%, 42%)
- CSS Variable
- var(--color-teal-600)
- Tailwind Class
- bg-teal-600
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
3.74:1
On Black
5.61:1
Tailwind Usage — All Utilities
Background
bg-teal-600Text
text-teal-600Border
border-teal-600Ring
ring-teal-600Outline
outline-teal-600Fill
fill-teal-600Stroke
stroke-teal-600From (gradient)
from-teal-600Via (gradient)
via-teal-600To (gradient)
to-teal-600Placeholder
placeholder-teal-600Caret
caret-teal-600Accent
accent-teal-600Decoration
decoration-teal-600Shadow Color
shadow-teal-600Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'teal-600': '#0d9488',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #0D9488;
/* RGB */
background-color: rgb(13, 148, 136);
/* HSL */
background-color: hsl(175, 84%, 32%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.600 0.104 185);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-teal-600);
/* Gradient example */
background: linear-gradient(135deg, #f0fdfa 0%, #0f766e 100%);OKLCH — Modern Color Space
Lightness (L)
0.600
60% perceived brightness
Chroma (C)
0.104
Color intensity / saturation
Hue (H)
185°
Angle on perceptual hue wheel
oklch(0.600 0.104 185)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
Accessible primary action
Shade 600 of the Teal palette
Recommended Uses
- ✓Primary buttons on white (passes AA)
- ✓Active state fills
- ✓Bold text links
- ✓Form borders on focus
- ✓Strong icon fills
Avoid
Preview
On White
Aa Bb Cc
On Black
Aa Bb Cc
As Background
Aa Bb Cc — #0D9488
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Teal 600
Nearest Tailwind equivalent — #0D9488
Frequently Asked Questions
- What is the hex code for Tailwind Teal 600?
- Tailwind Teal 600 has the hex code #0D9488. Its RGB value is rgb(13, 148, 136) and its HSL value is hsl(175, 84%, 32%).
- What Tailwind utility classes use Teal 600?
- Use bg-teal-600 for backgrounds, text-teal-600 for text color, border-teal-600 for borders, and ring-teal-600 for focus rings. In Tailwind v4 the CSS variable var(--color-teal-600) is available natively.
- Is Tailwind Teal 600 WCAG accessible?
- Tailwind Teal 600 achieves a 3.74:1 contrast ratio on white (AA Large) and 5.61:1 on black (AA). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Teal 600?
- Tailwind Teal 600 in OKLCH is oklch(0.600 0.104 185) — lightness 0.600, chroma 0.104, hue 185°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Teal 600 used for?
- At shade 600, Tailwind Teal 600 is best described as "Accessible primary action". Recommended uses: Primary buttons on white (passes AA), Active state fills, Bold text links.