Persian Rose

HEX: #FE28A2 | Modern Palette

On White
3.48:1
FAIL
On Black
6.04:1
PASS

Color Specifications

HEX
#FE28A2
RGB
254, 40, 162
HSL
325°, 99% ,57%
CMYK
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

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

Color Characteristics

Style
Vivid Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #96969E
Protanopia #6464A3
Tritanopia #F94848
Achromatopsia #898989

Frequently Asked Questions

Persian Rose (#FE28A2) is a color with RGB(254, 40, 162) and HSL(325.8°, 99.1%, 57.6%).

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

#FE28A2 is suitable for Text, Button, Accent and works well with Vivid, Neon styles.

#FE28A2 is commonly associated with Energetic, Bold.

The name Persian Rose is linked to Persian Rose from English (color name), meaning A specific shade of pink/magenta, evoking the color of roses found in Persia (modern-day Iran), known for their vibrant hues and cultural significance..

Name, History & Etymology

Origin Word Persian Rose
Meaning A specific shade of pink/magenta, evoking the color of roses found in Persia (modern-day Iran), known for their vibrant hues and cultural significance.
Language English (color name)
First Recorded Use Late 20th - Early 21st Century

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.

Similar Named Colors

Rose Bonbon #F9429E ΔE 2.45
Wild Strawberry #FF43A4 ΔE 2.80
Deep Pink #FF1493 ΔE 2.83
Magenta (process) #FF0090 ΔE 3.43

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);
}