Nadeshiko Pink
HEX: #F6ADC6 | Modern Palette
Color Specifications
#F6ADC6
246, 173, 198
339°, 80% ,82%
0, 30, 20, 4
About Nadeshiko Pink
Nadeshiko Pink (#F6ADC6) is a color with RGB(246, 173, 198) and HSL(339.5°, 80.2%, 82.2%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #ADF6DD, which creates strong contrast. Its triadic palette includes #C6F6AD and #ADC6F6. The name comes from 撫子 (nadeshiko) (Japanese).
- HEX: #F6ADC6
- RGB: 246, 173, 198
- HSL: 339.5°, 80.2%, 82.2%
- Mood: Playful
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #ADF6DD
- Triadic colors: #C6F6AD, #ADC6F6
- The name comes from 撫子 (nadeshiko) (Japanese).
Live Components
Color Palettes
Color Harmonies
Complementary
The color directly opposite on the color wheel — creates maximum contrast and vibrance.
Analogous
Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.
Triadic
Three colors equally spaced 120° apart — bold, balanced, and visually rich.
Split-Complementary
Two colors flanking the complement — high contrast with less tension than full complementary.
Tetradic (Square)
Four colors at 90° intervals — rich variety, best when one color dominates.
Monochromatic
Shades and tints of the same hue — cohesive, elegant, and easy to work with.
Shades & Tints
A seamless scale of #F6ADC6 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#C6C6C4
#B7B7C6
#F4B0B0
#C1C1C1
Frequently Asked Questions
Name, History & Etymology
History
The nadeshiko flower has been admired in Japan for centuries, often symbolizing purity, innocence, and feminine beauty. It is one of the 'Seven Autumn Flowers' (Aki no Nanakusa) in classical Japanese poetry. The color 'Nadeshiko Pink' is an attempt to capture the delicate, soft pink hue of this beloved flower. In modern Japan, 'Nadeshiko Japan' is also the nickname for the national women's football (soccer) team, further cementing the flower's association with strong, beautiful Japanese women.
First Recorded Use
The word "nadeshiko" itself has a long history in Japanese literature and poetry, referring to the flower. The specific color 'Nadeshiko Pink' as a named color is a more modern standardization, but it directly references the traditional perception of the flower's color.
Cultural Associations
Often associated with traditional Japanese beauty and femininity. A common motif in Japanese art, literature, and textiles. The flower's delicate appearance belies its resilience, a quality often admired in Japanese culture. The color is a soft, muted pink, distinct from more vibrant or reddish pinks.
Code Snippets
/* Background */
.element {
background-color: #F6ADC6;
}
/* Text */
.element {
color: #F6ADC6;
}
/* Border */
.element {
border: 1px solid #F6ADC6;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#F6ADC6,
#ADF6DD
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#F6ADC6,
#ADF6DD
);
}
// SCSS variable
$nadeshiko-pink: #F6ADC6;
// With RGB channels (useful for rgba() usage)
$nadeshiko-pink-r: 246;
$nadeshiko-pink-g: 173;
$nadeshiko-pink-b: 198;
// Usage
.element {
background-color: $nadeshiko-pink;
color: rgba($nadeshiko-pink-r, $nadeshiko-pink-g, $nadeshiko-pink-b, 0.8);
}