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