Persian Rose
HEX: #FE28A2 | Modern Palette
Color Specifications
#FE28A2
254, 40, 162
325°, 99% ,57%
0, 84, 36, 0
About Persian Rose
Persian Rose (#FE28A2) is a color with RGB(254, 40, 162) and HSL(325.8°, 99.1%, 57.6%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #28FE84, which creates strong contrast. Its triadic palette includes #A2FE28 and #28A2FE. The name comes from Persian Rose (English (color name)).
- HEX: #FE28A2
- RGB: 254, 40, 162
- HSL: 325.8°, 99.1%, 57.6%
- Mood: Energetic, Bold
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #28FE84
- Triadic colors: #A2FE28, #28A2FE
- The name comes from Persian Rose (English (color name)).
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 #FE28A2 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The name 'Persian Rose' combines a geographical/cultural reference ('Persian') with a floral one ('Rose'). Roses have a long and rich history in Persia (Iran), dating back thousands of years. They are deeply embedded in Persian literature, art, and horticulture, often symbolizing love, beauty, and perfection. Many varieties of roses, including those with vibrant pink and magenta petals, are native to or have been cultivated extensively in the region. The color name itself is a modern interpretation, likely created to evoke the luxurious and exotic imagery associated with Persian gardens and the specific, often intense, pinks of roses found there. It's a marketing and descriptive term rather than a historical pigment name.
First Recorded Use
The exact first use of 'Persian Rose' as a standardized color name (like in digital palettes or textile industries) is difficult to pinpoint to a single date. However, the concept of 'Persian Rose' as a descriptive color likely emerged as early as the late 20th century, gaining more traction with the proliferation of digital color systems and fashion trends that drew inspiration from global cultures. It's a descriptive name rather than a historical dye name.
Cultural Associations
Roses, particularly pink and red varieties, hold immense cultural significance in Persian culture. They are frequently mentioned in classical Persian poetry (e.g., by Hafez and Saadi), where they symbolize beauty, the beloved, and the transient nature of life. Rosewater, distilled from rose petals, is used in Persian cuisine, religious ceremonies, and traditional medicine. The color 'Persian Rose' therefore carries connotations of romance, elegance, and a rich cultural heritage. It suggests a vibrant, deep pink or magenta that is both delicate and striking, much like the revered Persian rose itself.
Code Snippets
/* Background */
.element {
background-color: #FE28A2;
}
/* Text */
.element {
color: #FE28A2;
}
/* Border */
.element {
border: 1px solid #FE28A2;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FE28A2,
#28FE84
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FE28A2,
#28FE84
);
}
// SCSS variable
$persian-rose: #FE28A2;
// With RGB channels (useful for rgba() usage)
$persian-rose-r: 254;
$persian-rose-g: 40;
$persian-rose-b: 162;
// Usage
.element {
background-color: $persian-rose;
color: rgba($persian-rose-r, $persian-rose-g, $persian-rose-b, 0.8);
}