Skip to main content

bg-zinc-700

Tailwind Zinc 700

#3F3F46·Zinc family·Shade 700

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

60/100

Good

Based on WCAG 2.1 contrast ratios against white and black backgrounds.

On White

10.44:1

AAA

On Black

2.01:1

Fail
Test in Contrast Checker →

Tailwind Usage — All Utilities

Background

bg-zinc-700

Text

text-zinc-700

Border

border-zinc-700

Ring

ring-zinc-700

Outline

outline-zinc-700

Fill

fill-zinc-700

Stroke

stroke-zinc-700

From (gradient)

from-zinc-700

Via (gradient)

via-zinc-700

To (gradient)

to-zinc-700

Placeholder

placeholder-zinc-700

Caret

caret-zinc-700

Accent

accent-zinc-700

Decoration

decoration-zinc-700

Shadow Color

shadow-zinc-700

Tailwind 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

Text on black — contrast is too low for dark mode text.

Preview

On White

Aa Bb Cc

On Black

Aa Bb Cc

As Background

Aa Bb Cc — #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.