Cherry Blossom Pink

HEX: #FFB7C5 | Modern Palette

On White
1.64:1
FAIL
On Black
12.83:1
PASS

Color Specifications

HEX
#FFB7C5
RGB
255, 183, 197
HSL
348°, 100% ,85%
CMYK
0, 28, 23, 0

About Cherry Blossom Pink

Cherry Blossom Pink (#FFB7C5) is a color with RGB(255, 183, 197) and HSL(348.3°, 100%, 85.9%). It is commonly associated with Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Background. Its complementary color is #B7FFF1, which creates strong contrast. Its triadic palette includes #C5FFB7 and #B7C5FF. The name comes from Cherry Blossom Pink (English).

  • HEX: #FFB7C5
  • RGB: 255, 183, 197
  • HSL: 348.3°, 100%, 85.9%
  • Mood: Playful
  • Style: Neon, Warm
  • Use case: Text, Button, Background
  • Complementary color: #B7FFF1
  • Triadic colors: #C5FFB7, #B7C5FF
  • The name comes from Cherry Blossom Pink (English).

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 #FFB7C5 from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #CFCFC3
Protanopia #C1C1C5
Tritanopia #FEB9B9
Achromatopsia #CACACA

Frequently Asked Questions

Cherry Blossom Pink (#FFB7C5) is a color with RGB(255, 183, 197) and HSL(348.3°, 100%, 85.9%).

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

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

#FFB7C5 is commonly associated with Playful.

The name Cherry Blossom Pink is linked to Cherry Blossom Pink from English, meaning A light, delicate shade of pink reminiscent of the petals of cherry blossoms..

Name, History & Etymology

Origin Word Cherry Blossom Pink
Meaning A light, delicate shade of pink reminiscent of the petals of cherry blossoms.
Language English
First Recorded Use Early 20th Century

History

The color 'pink' itself has a long history, but its association with cherry blossoms is more specific. Cherry blossoms (sakura) have been culturally significant in Japan for centuries, symbolizing the ephemeral nature of life, beauty, and renewal. As Western cultures became more exposed to Japanese art and traditions, the visual imagery of pink cherry blossoms became iconic. The naming of a specific pink shade after them reflects this cultural exchange and the desire to capture that particular delicate hue. It's a descriptive name that directly references its natural inspiration.

First Recorded Use

While the concept of pink associated with cherry blossoms existed earlier, the specific color name 'Cherry Blossom Pink' as a recognized commercial or descriptive color term likely gained traction in the early to mid-20th century, coinciding with increased interest in Japanese culture and the popularization of specific color palettes in fashion and design.

Cultural Associations

In Japan, cherry blossoms (sakura) are deeply symbolic, representing beauty, the transient nature of life (mono no aware), and new beginnings. The pink associated with them is therefore imbued with these meanings. Globally, 'Cherry Blossom Pink' evokes feelings of spring, renewal, delicacy, and often a sense of romanticism or femininity. It is a popular color in fashion, cosmetics, interior design, and branding, particularly for products aiming for a soft, elegant, or natural aesthetic.

Similar Named Colors

Light Pink #FFB6C1 ΔE 1.11
Pink #FFC0CB ΔE 2.39
Bubble Gum #FFC1CC ΔE 2.64
Nadeshiko Pink #F6ADC6 ΔE 4.10

Code Snippets

/* Background */
.element {
    background-color: #FFB7C5;
}

/* Text */
.element {
    color: #FFB7C5;
}

/* Border */
.element {
    border: 1px solid #FFB7C5;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #FFB7C5,
        #B7FFF1
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FFB7C5,
        #B7FFF1
    );
}

// SCSS variable
$cherry-blossom-pink: #FFB7C5;

// With RGB channels (useful for rgba() usage)
$cherry-blossom-pink-r: 255;
$cherry-blossom-pink-g: 183;
$cherry-blossom-pink-b: 197;

// Usage
.element {
    background-color: $cherry-blossom-pink;
    color: rgba($cherry-blossom-pink-r, $cherry-blossom-pink-g, $cherry-blossom-pink-b, 0.8);
}