Color Values
- HEX
- #5EEAD4
- RGB
- rgb(94, 234, 212)
- HSL
- hsl(171, 77%, 64%)
- OKLCH
- oklch(0.855 0.125 181)
- CMYK
- cmyk(60%, 0%, 9%, 8%)
- CSS Variable
- var(--color-teal-300)
- Tailwind Class
- bg-teal-300
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
1.48:1
On Black
14.2:1
Tailwind Usage — All Utilities
Background
bg-teal-300Text
text-teal-300Border
border-teal-300Ring
ring-teal-300Outline
outline-teal-300Fill
fill-teal-300Stroke
stroke-teal-300From (gradient)
from-teal-300Via (gradient)
via-teal-300To (gradient)
to-teal-300Placeholder
placeholder-teal-300Caret
caret-teal-300Accent
accent-teal-300Decoration
decoration-teal-300Shadow Color
shadow-teal-300Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'teal-300': '#5eead4',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #5EEAD4;
/* RGB */
background-color: rgb(94, 234, 212);
/* HSL */
background-color: hsl(171, 77%, 64%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.855 0.125 181);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-teal-300);
/* Gradient example */
background: linear-gradient(135deg, #f0fdfa 0%, #2dd4bf 100%);OKLCH — Modern Color Space
Lightness (L)
0.855
86% perceived brightness
Chroma (C)
0.125
Color intensity / saturation
Hue (H)
181°
Angle on perceptual hue wheel
oklch(0.855 0.125 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
Light mid-tone accent
Shade 300 of the Teal palette
Recommended Uses
- ✓Secondary button outlines
- ✓Icon strokes on dark backgrounds
- ✓Progress bar fills
- ✓Selected state highlights
Avoid
Preview
On White
Aa Bb Cc
On Black
Aa Bb Cc
As Background
Aa Bb Cc — #5EEAD4
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Teal 300
Nearest Tailwind equivalent — #5EEAD4
Frequently Asked Questions
- What is the hex code for Tailwind Teal 300?
- Tailwind Teal 300 has the hex code #5EEAD4. Its RGB value is rgb(94, 234, 212) and its HSL value is hsl(171, 77%, 64%).
- What Tailwind utility classes use Teal 300?
- Use bg-teal-300 for backgrounds, text-teal-300 for text color, border-teal-300 for borders, and ring-teal-300 for focus rings. In Tailwind v4 the CSS variable var(--color-teal-300) is available natively.
- Is Tailwind Teal 300 WCAG accessible?
- Tailwind Teal 300 achieves a 1.48:1 contrast ratio on white (Fail) and 14.2:1 on black (AAA). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Teal 300?
- Tailwind Teal 300 in OKLCH is oklch(0.855 0.125 181) — lightness 0.855, chroma 0.125, hue 181°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Teal 300 used for?
- At shade 300, Tailwind Teal 300 is best described as "Light mid-tone accent". Recommended uses: Secondary button outlines, Icon strokes on dark backgrounds, Progress bar fills.