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
Spanish Pink #F7BFBE is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
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
Spanish Pink #F7BFBE pairs with #BEF6F7 as its complementary color, and #BEF7BF and #BFBEF7 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
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
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);
}