Color Values
- HEX
- #082F49
- RGB
- rgb(8, 47, 73)
- HSL
- hsl(204, 80%, 16%)
- OKLCH
- oklch(0.293 0.063 243)
- CMYK
- cmyk(89%, 36%, 0%, 71%)
- CSS Variable
- var(--color-sky-950)
- Tailwind Class
- bg-sky-950
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
13.88:1
On Black
1.51:1
Tailwind Usage — All Utilities
Background
bg-sky-950Text
text-sky-950Border
border-sky-950Ring
ring-sky-950Outline
outline-sky-950Fill
fill-sky-950Stroke
stroke-sky-950From (gradient)
from-sky-950Via (gradient)
via-sky-950To (gradient)
to-sky-950Placeholder
placeholder-sky-950Caret
caret-sky-950Accent
accent-sky-950Decoration
decoration-sky-950Shadow Color
shadow-sky-950Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'sky-950': '#082f49',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #082F49;
/* RGB */
background-color: rgb(8, 47, 73);
/* HSL */
background-color: hsl(204, 80%, 16%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.293 0.063 243);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-sky-950);
/* Gradient example */
background: linear-gradient(135deg, #f0f9ff 0%, #082f49 100%);OKLCH — Modern Color Space
Lightness (L)
0.293
29% perceived brightness
Chroma (C)
0.063
Color intensity / saturation
Hue (H)
243°
Angle on perceptual hue wheel
oklch(0.293 0.063 243)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
Ultra-dark near-black variant
Shade 950 of the Sky palette
Recommended Uses
- ✓Maximum-contrast text on white
- ✓Rich dark card backgrounds
- ✓Dark theme page backgrounds
- ✓Tinted near-black UI surfaces
Avoid
Preview
On White
Aa Bb Cc
On Black
Aa Bb Cc
As Background
Aa Bb Cc — #082F49
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Sky 950
Nearest Tailwind equivalent — #082F49
Frequently Asked Questions
- What is the hex code for Tailwind Sky 950?
- Tailwind Sky 950 has the hex code #082F49. Its RGB value is rgb(8, 47, 73) and its HSL value is hsl(204, 80%, 16%).
- What Tailwind utility classes use Sky 950?
- Use bg-sky-950 for backgrounds, text-sky-950 for text color, border-sky-950 for borders, and ring-sky-950 for focus rings. In Tailwind v4 the CSS variable var(--color-sky-950) is available natively.
- Is Tailwind Sky 950 WCAG accessible?
- Tailwind Sky 950 achieves a 13.88:1 contrast ratio on white (AAA) and 1.51:1 on black (Fail). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Sky 950?
- Tailwind Sky 950 in OKLCH is oklch(0.293 0.063 243) — lightness 0.293, chroma 0.063, hue 243°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Sky 950 used for?
- At shade 950, Tailwind Sky 950 is best described as "Ultra-dark near-black variant". Recommended uses: Maximum-contrast text on white, Rich dark card backgrounds, Dark theme page backgrounds.