Skip to main content

bg-zinc-100

Tailwind Zinc 100

#F4F4F5·Zinc family·Shade 100

Color Values

HEX
#F4F4F5
RGB
rgb(244, 244, 245)
HSL
hsl(240, 5%, 96%)
OKLCH
oklch(0.967 0.001 287)
CMYK
cmyk(0%, 0%, 0%, 4%)
CSS Variable
var(--color-zinc-100)
Tailwind Class
bg-zinc-100

Accessibility Score

60/100

Good

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

On White

1.1:1

Fail

On Black

19.11:1

AAA
Test in Contrast Checker →

Tailwind Usage — All Utilities

Background

bg-zinc-100

Text

text-zinc-100

Border

border-zinc-100

Ring

ring-zinc-100

Outline

outline-zinc-100

Fill

fill-zinc-100

Stroke

stroke-zinc-100

From (gradient)

from-zinc-100

Via (gradient)

via-zinc-100

To (gradient)

to-zinc-100

Placeholder

placeholder-zinc-100

Caret

caret-zinc-100

Accent

accent-zinc-100

Decoration

decoration-zinc-100

Shadow Color

shadow-zinc-100

Tailwind v3 Config (extend custom color)

// tailwind.config.js module.exports = { theme: { extend: { colors: { 'zinc-100': '#f4f4f5', }, }, }, };

CSS Equivalent

/* Hex */
background-color: #F4F4F5;

/* RGB */
background-color: rgb(244, 244, 245);

/* HSL */
background-color: hsl(240, 5%, 96%);

/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.967 0.001 287);

/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-zinc-100);

/* Gradient example */
background: linear-gradient(135deg, #f4f4f5 0%, #e4e4e7 100%);

OKLCH — Modern Color Space

Lightness (L)

0.967

97% perceived brightness

Chroma (C)

0.001

Color intensity / saturation

Hue (H)

287°

Angle on perceptual hue wheel

oklch(0.967 0.001 287)

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 surface & background

Shade 100 of the Zinc palette

Recommended Uses

  • Card backgrounds
  • Sidebar fills
  • Input field backgrounds
  • Chip & badge backgrounds
  • Skeleton loaders

Avoid

Body text on white — insufficient contrast for normal-size text.

Preview

On White

Aa Bb Cc

On Black

Aa Bb Cc

As Background

Aa Bb Cc — #F4F4F5

Frequently Asked Questions

What is the hex code for Tailwind Zinc 100?
Tailwind Zinc 100 has the hex code #F4F4F5. Its RGB value is rgb(244, 244, 245) and its HSL value is hsl(240, 5%, 96%).
What Tailwind utility classes use Zinc 100?
Use bg-zinc-100 for backgrounds, text-zinc-100 for text color, border-zinc-100 for borders, and ring-zinc-100 for focus rings. In Tailwind v4 the CSS variable var(--color-zinc-100) is available natively.
Is Tailwind Zinc 100 WCAG accessible?
Tailwind Zinc 100 achieves a 1.1:1 contrast ratio on white (Fail) and 19.11:1 on black (AAA). Its overall accessibility score is 60/100 (Good).
What is the OKLCH value for Tailwind Zinc 100?
Tailwind Zinc 100 in OKLCH is oklch(0.967 0.001 287) — lightness 0.967, chroma 0.001, hue 287°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
What is Tailwind Zinc 100 used for?
At shade 100, Tailwind Zinc 100 is best described as "Light surface & background". Recommended uses: Card backgrounds, Sidebar fills, Input field backgrounds.