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