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