Color Values
- HEX
- #3F3F46
- RGB
- rgb(63, 63, 70)
- HSL
- hsl(240, 5%, 26%)
- OKLCH
- oklch(0.370 0.012 286)
- CMYK
- cmyk(10%, 10%, 0%, 73%)
- CSS Variable
- var(--color-zinc-700)
- Tailwind Class
- bg-zinc-700
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
10.44:1
On Black
2.01:1
Tailwind Usage — All Utilities
Background
bg-zinc-700Text
text-zinc-700Border
border-zinc-700Ring
ring-zinc-700Outline
outline-zinc-700Fill
fill-zinc-700Stroke
stroke-zinc-700From (gradient)
from-zinc-700Via (gradient)
via-zinc-700To (gradient)
to-zinc-700Placeholder
placeholder-zinc-700Caret
caret-zinc-700Accent
accent-zinc-700Decoration
decoration-zinc-700Shadow Color
shadow-zinc-700Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'zinc-700': '#3f3f46',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #3F3F46;
/* RGB */
background-color: rgb(63, 63, 70);
/* HSL */
background-color: hsl(240, 5%, 26%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.370 0.012 286);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-zinc-700);
/* Gradient example */
background: linear-gradient(135deg, #fafafa 0%, #27272a 100%);OKLCH — Modern Color Space
Lightness (L)
0.370
37% perceived brightness
Chroma (C)
0.012
Color intensity / saturation
Hue (H)
286°
Angle on perceptual hue wheel
oklch(0.370 0.012 286)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 Zinc 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 — #3F3F46
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Zinc 700
Nearest Tailwind equivalent — #3F3F46
Frequently Asked Questions
- What is the hex code for Tailwind Zinc 700?
- Tailwind Zinc 700 has the hex code #3F3F46. Its RGB value is rgb(63, 63, 70) and its HSL value is hsl(240, 5%, 26%).
- What Tailwind utility classes use Zinc 700?
- Use bg-zinc-700 for backgrounds, text-zinc-700 for text color, border-zinc-700 for borders, and ring-zinc-700 for focus rings. In Tailwind v4 the CSS variable var(--color-zinc-700) is available natively.
- Is Tailwind Zinc 700 WCAG accessible?
- Tailwind Zinc 700 achieves a 10.44:1 contrast ratio on white (AAA) and 2.01:1 on black (Fail). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Zinc 700?
- Tailwind Zinc 700 in OKLCH is oklch(0.370 0.012 286) — lightness 0.370, chroma 0.012, hue 286°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Zinc 700 used for?
- At shade 700, Tailwind Zinc 700 is best described as "Dark accent & pressed state". Recommended uses: Pressed/active button states, Text links on white, Dark-mode primary buttons.