Color Values
- HEX
- #FDBA74
- RGB
- rgb(253, 186, 116)
- HSL
- hsl(31, 97%, 72%)
- OKLCH
- oklch(0.837 0.117 66)
- CMYK
- cmyk(0%, 26%, 54%, 1%)
- CSS Variable
- var(--color-orange-300)
- Tailwind Class
- bg-orange-300
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
1.69:1
On Black
12.45:1
Tailwind Usage — All Utilities
Background
bg-orange-300Text
text-orange-300Border
border-orange-300Ring
ring-orange-300Outline
outline-orange-300Fill
fill-orange-300Stroke
stroke-orange-300From (gradient)
from-orange-300Via (gradient)
via-orange-300To (gradient)
to-orange-300Placeholder
placeholder-orange-300Caret
caret-orange-300Accent
accent-orange-300Decoration
decoration-orange-300Shadow Color
shadow-orange-300Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'orange-300': '#fdba74',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #FDBA74;
/* RGB */
background-color: rgb(253, 186, 116);
/* HSL */
background-color: hsl(31, 97%, 72%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.837 0.117 66);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-orange-300);
/* Gradient example */
background: linear-gradient(135deg, #fff7ed 0%, #fb923c 100%);OKLCH — Modern Color Space
Lightness (L)
0.837
84% perceived brightness
Chroma (C)
0.117
Color intensity / saturation
Hue (H)
66°
Angle on perceptual hue wheel
oklch(0.837 0.117 66)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
Light mid-tone accent
Shade 300 of the Orange palette
Recommended Uses
- ✓Secondary button outlines
- ✓Icon strokes on dark backgrounds
- ✓Progress bar fills
- ✓Selected state highlights
Avoid
Preview
On White
Aa Bb Cc
On Black
Aa Bb Cc
As Background
Aa Bb Cc — #FDBA74
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Orange 300
Nearest Tailwind equivalent — #FDBA74
Frequently Asked Questions
- What is the hex code for Tailwind Orange 300?
- Tailwind Orange 300 has the hex code #FDBA74. Its RGB value is rgb(253, 186, 116) and its HSL value is hsl(31, 97%, 72%).
- What Tailwind utility classes use Orange 300?
- Use bg-orange-300 for backgrounds, text-orange-300 for text color, border-orange-300 for borders, and ring-orange-300 for focus rings. In Tailwind v4 the CSS variable var(--color-orange-300) is available natively.
- Is Tailwind Orange 300 WCAG accessible?
- Tailwind Orange 300 achieves a 1.69:1 contrast ratio on white (Fail) and 12.45:1 on black (AAA). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Orange 300?
- Tailwind Orange 300 in OKLCH is oklch(0.837 0.117 66) — lightness 0.837, chroma 0.117, hue 66°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Orange 300 used for?
- At shade 300, Tailwind Orange 300 is best described as "Light mid-tone accent". Recommended uses: Secondary button outlines, Icon strokes on dark backgrounds, Progress bar fills.