Nadeshiko Pink

HEX: #F6ADC6 | Modern Palette

On White
1.79:1
FAIL
On Black
11.71:1
PASS

Color Specifications

HEX
#F6ADC6
RGB
246, 173, 198
HSL
339°, 80% ,82%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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

Mood
Playful
Style
Warm

Accessibility Simulation

Deuteranopia #C6C6C4
Protanopia #B7B7C6
Tritanopia #F4B0B0
Achromatopsia #C1C1C1

Frequently Asked Questions

Nadeshiko Pink (#F6ADC6) is a color with RGB(246, 173, 198) and HSL(339.5°, 80.2%, 82.2%).

#F6ADC6 pairs strongly with #ADF6DD as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#F6ADC6 is suitable for Text, Button, Background and works well with Warm styles.

#F6ADC6 is commonly associated with Playful.

The name Nadeshiko Pink is linked to 撫子 (nadeshiko) from Japanese, meaning Dianthus (specifically Dianthus superbus, also known as large pink or fringed pink).

Name, History & Etymology

Origin Word 撫子 (nadeshiko)
Meaning Dianthus (specifically Dianthus superbus, also known as large pink or fringed pink)
Language Japanese
First Recorded Use Heian period (794-1185)

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.

Similar Named Colors

Lavender Pink #FBAED2 ΔE 3.08
Carnation Pink #FFA6C9 ΔE 3.11
Cotton Candy #FFBCD9 ΔE 3.91
Amaranth Pink #F19CBB ΔE 4.05

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);
}