Spanish Pink
HEX: #F7BFBE | Modern Palette
Color Specifications
#F7BFBE
247, 191, 190
1°, 23% ,96%
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
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 #F7BFBE from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#D1D1BD
#C6C6BE
#F7BFBF
#CDCDCD
Frequently Asked Questions
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);
}