Color Values
- HEX
- #BFDBFE
- RGB
- rgb(191, 219, 254)
- HSL
- hsl(213, 97%, 87%)
- OKLCH
- oklch(0.882 0.057 254)
- CMYK
- cmyk(25%, 14%, 0%, 0%)
- CSS Variable
- var(--color-blue-200)
- Tailwind Class
- bg-blue-200
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
1.42:1
On Black
14.78:1
Tailwind Usage — All Utilities
Background
bg-blue-200Text
text-blue-200Border
border-blue-200Ring
ring-blue-200Outline
outline-blue-200Fill
fill-blue-200Stroke
stroke-blue-200From (gradient)
from-blue-200Via (gradient)
via-blue-200To (gradient)
to-blue-200Placeholder
placeholder-blue-200Caret
caret-blue-200Accent
accent-blue-200Decoration
decoration-blue-200Shadow Color
shadow-blue-200Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'blue-200': '#bfdbfe',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #BFDBFE;
/* RGB */
background-color: rgb(191, 219, 254);
/* HSL */
background-color: hsl(213, 97%, 87%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.882 0.057 254);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-blue-200);
/* Gradient example */
background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%);OKLCH — Modern Color Space
Lightness (L)
0.882
88% perceived brightness
Chroma (C)
0.057
Color intensity / saturation
Hue (H)
254°
Angle on perceptual hue wheel
oklch(0.882 0.057 254)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
Soft accent & border
Shade 200 of the Blue palette
Recommended Uses
- ✓Focus ring outlines
- ✓Divider lines
- ✓Soft tag borders
- ✓Progress track fills
- ✓Decorative underlines
Avoid
Preview
On White
Aa Bb Cc
On Black
Aa Bb Cc
As Background
Aa Bb Cc — #BFDBFE
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Blue 200
Nearest Tailwind equivalent — #BFDBFE
Frequently Asked Questions
- What is the hex code for Tailwind Blue 200?
- Tailwind Blue 200 has the hex code #BFDBFE. Its RGB value is rgb(191, 219, 254) and its HSL value is hsl(213, 97%, 87%).
- What Tailwind utility classes use Blue 200?
- Use bg-blue-200 for backgrounds, text-blue-200 for text color, border-blue-200 for borders, and ring-blue-200 for focus rings. In Tailwind v4 the CSS variable var(--color-blue-200) is available natively.
- Is Tailwind Blue 200 WCAG accessible?
- Tailwind Blue 200 achieves a 1.42:1 contrast ratio on white (Fail) and 14.78:1 on black (AAA). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Blue 200?
- Tailwind Blue 200 in OKLCH is oklch(0.882 0.057 254) — lightness 0.882, chroma 0.057, hue 254°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Blue 200 used for?
- At shade 200, Tailwind Blue 200 is best described as "Soft accent & border". Recommended uses: Focus ring outlines, Divider lines, Soft tag borders.