Persian Pink
HEX: #F77FBE | Modern Palette
Color Specifications
#F77FBE
247, 127, 190
328°, 88% ,73%
0, 49, 23, 3
About Persian Pink
Persian Pink (#F77FBE) is a color with RGB(247, 127, 190) and HSL(328.5°, 88.2%, 73.3%). It is commonly associated with Bold, Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #7FF7B8, which creates strong contrast. Its triadic palette includes #BEF77F and #7FBEF7. The name comes from Persian Pink (English (descriptive)).
- HEX: #F77FBE
- RGB: 247, 127, 190
- HSL: 328.5°, 88.2%, 73.3%
- Mood: Bold, Playful
- Style: Neon, Warm
- Use case: Text, Button, Accent
- Complementary color: #7FF7B8
- Triadic colors: #BEF77F, #7FBEF7
- The name comes from Persian Pink (English (descriptive)).
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 #F77FBE from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color pink itself has a long history, often associated with youth, femininity, and romance. The 'Persian' modifier adds a layer of sophistication and exoticism. Persian art, particularly miniatures, carpets, and ceramics, frequently features a rich palette including various shades of pink, rose, and fuchsia, often derived from natural dyes like cochineal. The naming of colors after geographical regions or cultures became common in the Victorian era and continued into the 20th century, reflecting a fascination with global influences in fashion, interior design, and art.
First Recorded Use
The specific term 'Persian Pink' likely emerged as color naming became more standardized and descriptive, drawing inspiration from exotic locales and their associated aesthetics. While pinks have existed for centuries, the 'Persian' descriptor points to a period of increased cultural exchange and appreciation for Middle Eastern art and design in the West.
Cultural Associations
In Persian culture, colors hold significant meaning. While there isn't one single 'Persian Pink' that is universally symbolic, shades of pink and rose are prevalent in traditional Persian gardens (often associated with roses), poetry (symbolizing love and beauty), and textiles. The color evokes images of delicate blossoms, intricate patterns, and the vibrant artistry of Persia. In Western culture, 'Persian Pink' often carries connotations of elegance, warmth, and a touch of the exotic, distinguishing it from more common or 'bubblegum' pinks.
Code Snippets
/* Background */
.element {
background-color: #F77FBE;
}
/* Text */
.element {
color: #F77FBE;
}
/* Border */
.element {
border: 1px solid #F77FBE;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#F77FBE,
#7FF7B8
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#F77FBE,
#7FF7B8
);
}
// SCSS variable
$persian-pink: #F77FBE;
// With RGB channels (useful for rgba() usage)
$persian-pink-r: 247;
$persian-pink-g: 127;
$persian-pink-b: 190;
// Usage
.element {
background-color: $persian-pink;
color: rgba($persian-pink-r, $persian-pink-g, $persian-pink-b, 0.8);
}