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