Spanish Pink

HEX: #F7BFBE | Modern Palette

On White
1.60:1
FAIL
On Black
13.15:1
PASS

Color Specifications

HEX
#F7BFBE
RGB
247, 191, 190
HSL
1°, 23% ,96%
CMYK
0, 22.67, 23.08, 3.14

About Spanish Pink

Spanish Pink (#F7BFBE) is a color with RGB(247, 191, 190) and HSL(1.05°, 23.08%, 96.86%). In design, it fits Pastel, Warm styles and is suitable for Text, Background, Print. Its complementary color is #BEF6F7, which creates strong contrast. Its triadic palette includes #BEF7BF and #BFBEF7.

  • HEX: #F7BFBE
  • RGB: 247, 191, 190
  • HSL: 1.05°, 23.08%, 96.86%
  • Style: Pastel, Warm
  • Use case: Text, Background, Print
  • Complementary color: #BEF6F7
  • Triadic colors: #BEF7BF, #BFBEF7

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

Color Characteristics

Mood
Style
Pastel Warm
Use case
Text Background Print

Accessibility Simulation

Deuteranopia #D1D1BD
Protanopia #C6C6BE
Tritanopia #F7BFBF
Achromatopsia #CDCDCD

Frequently Asked Questions

Spanish Pink (#F7BFBE) is a color with RGB(247, 191, 190) and HSL(1.05°, 23.08%, 96.86%).

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

#F7BFBE is suitable for Text, Background, Print and works well with Pastel, Warm styles.

Similar Named Colors

Tea Rose #F4C2C2 ΔE 1.50
Melon #FDBCB4 ΔE 3.26
Pink #FFC0CB ΔE 4.54
Bubble Gum #FFC1CC ΔE 4.55

Code Snippets

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

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

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

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

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

// SCSS variable
$spanish-pink: #F7BFBE;

// With RGB channels (useful for rgba() usage)
$spanish-pink-r: 247;
$spanish-pink-g: 191;
$spanish-pink-b: 190;

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