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