Brilliant Rose

HEX: #FF55A3 | Modern Palette

On White
2.97:1
FAIL
On Black
7.08:1
PASS

Color Specifications

HEX
#FF55A3
RGB
255, 85, 163
HSL
332°, 100% ,66%
CMYK
0, 67, 36, 0

About Brilliant Rose

Brilliant Rose (#FF55A3) is a color with RGB(255, 85, 163) and HSL(332.5°, 100%, 66.7%). 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 #55FFB1, which creates strong contrast. Its triadic palette includes #A3FF55 and #55A3FF. The name comes from Brilliant Rose (English).

  • HEX: #FF55A3
  • RGB: 255, 85, 163
  • HSL: 332.5°, 100%, 66.7%
  • Mood: Energetic, Bold
  • Style: Vivid, Neon
  • Use case: Text, Button, Accent
  • Complementary color: #55FFB1
  • Triadic colors: #A3FF55, #55A3FF
  • The name comes from Brilliant Rose (English).

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

Color Characteristics

Style
Vivid Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #A1A19F
Protanopia #7979A4
Tritanopia #FB6363
Achromatopsia #969696

Frequently Asked Questions

Brilliant Rose (#FF55A3) is a color with RGB(255, 85, 163) and HSL(332.5°, 100%, 66.7%).

#FF55A3 pairs strongly with #55FFB1 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#FF55A3 is commonly associated with Energetic, Bold.

The name Brilliant Rose is linked to Brilliant Rose from English, meaning A rose that is exceptionally bright, sparkling, or intelligent in its appearance or symbolism..

Name, History & Etymology

Origin Word Brilliant Rose
Meaning A rose that is exceptionally bright, sparkling, or intelligent in its appearance or symbolism.
Language English
First Recorded Use Late 20th Century

History

The term 'brilliant' has been used to describe colors since at least the 17th century, often referring to a high degree of luminosity or intensity. 'Rose' as a color name dates back to the late 18th century, directly referencing the flower. The combination 'Brilliant Rose' is a more recent compound descriptor, likely gaining traction as brands sought evocative and distinct names for their products. The specific hex code #ff55a3 represents a vibrant, saturated shade of pink, leaning towards magenta, which aligns with the 'brilliant' descriptor.

First Recorded Use

The exact first use of 'Brilliant Rose' as a specific color name or product descriptor is difficult to pinpoint precisely without a dedicated historical color dictionary. However, the combination of 'brilliant' (implying intensity and sparkle) and 'rose' (a common color descriptor for shades of pink/red) likely emerged in marketing and descriptive language in the latter half of the 20th century, particularly with the advent of more precise color naming in cosmetics, fashion, and digital media. The hex code #ff55a3 itself is a modern digital representation.

Cultural Associations

Roses, in general, carry significant cultural weight, symbolizing love, beauty, passion, and often femininity. A 'brilliant' rose could imply a heightened or more intense version of these qualities. In modern culture, vibrant pinks like 'Brilliant Rose' are often associated with playfulness, glamour, youth, and sometimes a bold, confident femininity. It's a color that stands out and demands attention.

Similar Named Colors

Wild Strawberry #FF43A4 ΔE 2.69
Violet Red #F75394 ΔE 2.97
Rose Bonbon #F9429E ΔE 3.33
French Fuchsia #FD3F92 ΔE 3.82

Code Snippets

/* Background */
.element {
    background-color: #FF55A3;
}

/* Text */
.element {
    color: #FF55A3;
}

/* Border */
.element {
    border: 1px solid #FF55A3;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #FF55A3,
        #55FFB1
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FF55A3,
        #55FFB1
    );
}

// SCSS variable
$brilliant-rose: #FF55A3;

// With RGB channels (useful for rgba() usage)
$brilliant-rose-r: 255;
$brilliant-rose-g: 85;
$brilliant-rose-b: 163;

// Usage
.element {
    background-color: $brilliant-rose;
    color: rgba($brilliant-rose-r, $brilliant-rose-g, $brilliant-rose-b, 0.8);
}