Color Values
- HEX
- #6EE7B7
- RGB
- rgb(110, 231, 183)
- HSL
- hsl(156, 72%, 67%)
- OKLCH
- oklch(0.845 0.130 165)
- CMYK
- cmyk(52%, 0%, 21%, 9%)
- CSS Variable
- var(--color-emerald-300)
- Tailwind Class
- bg-emerald-300
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
1.52:1
On Black
13.78:1
Tailwind Usage — All Utilities
Background
bg-emerald-300Text
text-emerald-300Border
border-emerald-300Ring
ring-emerald-300Outline
outline-emerald-300Fill
fill-emerald-300Stroke
stroke-emerald-300From (gradient)
from-emerald-300Via (gradient)
via-emerald-300To (gradient)
to-emerald-300Placeholder
placeholder-emerald-300Caret
caret-emerald-300Accent
accent-emerald-300Decoration
decoration-emerald-300Shadow Color
shadow-emerald-300Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'emerald-300': '#6ee7b7',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #6EE7B7;
/* RGB */
background-color: rgb(110, 231, 183);
/* HSL */
background-color: hsl(156, 72%, 67%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.845 0.130 165);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-emerald-300);
/* Gradient example */
background: linear-gradient(135deg, #ecfdf5 0%, #34d399 100%);OKLCH — Modern Color Space
Lightness (L)
0.845
85% perceived brightness
Chroma (C)
0.130
Color intensity / saturation
Hue (H)
165°
Angle on perceptual hue wheel
oklch(0.845 0.130 165)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 Emerald 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 — #6EE7B7
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Emerald 300
Nearest Tailwind equivalent — #6EE7B7
Frequently Asked Questions
- What is the hex code for Tailwind Emerald 300?
- Tailwind Emerald 300 has the hex code #6EE7B7. Its RGB value is rgb(110, 231, 183) and its HSL value is hsl(156, 72%, 67%).
- What Tailwind utility classes use Emerald 300?
- Use bg-emerald-300 for backgrounds, text-emerald-300 for text color, border-emerald-300 for borders, and ring-emerald-300 for focus rings. In Tailwind v4 the CSS variable var(--color-emerald-300) is available natively.
- Is Tailwind Emerald 300 WCAG accessible?
- Tailwind Emerald 300 achieves a 1.52:1 contrast ratio on white (Fail) and 13.78:1 on black (AAA). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Emerald 300?
- Tailwind Emerald 300 in OKLCH is oklch(0.845 0.130 165) — lightness 0.845, chroma 0.130, hue 165°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Emerald 300 used for?
- At shade 300, Tailwind Emerald 300 is best described as "Light mid-tone accent". Recommended uses: Secondary button outlines, Icon strokes on dark backgrounds, Progress bar fills.