Paradise Pink

HEX: #E63E62 | Modern Palette

On White
4.02:1
FAIL
On Black
5.23:1
PASS

Color Specifications

HEX
#E63E62
RGB
230, 62, 98
HSL
347°, 73% ,90%
CMYK
0, 73.04, 57.39, 9.8

About Paradise Pink

Paradise Pink (#E63E62) is a color with RGB(230, 62, 98) and HSL(347.14°, 73.04%, 90.2%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #3EE6C2, which creates strong contrast. Its triadic palette includes #62E63E and #3E62E6. The name comes from Paradise Pink (English).

  • HEX: #E63E62
  • RGB: 230, 62, 98
  • HSL: 347.14°, 73.04%, 90.2%
  • Mood: Playful
  • Style: Warm
  • Use case: Text, Button, Background
  • Complementary color: #3EE6C2
  • Triadic colors: #62E63E, #3E62E6
  • The name comes from Paradise Pink (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 #E63E62 from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style
Warm

Accessibility Simulation

Deuteranopia #8C8C5B
Protanopia #656563
Tritanopia #E54444
Achromatopsia #7F7F7F

Frequently Asked Questions

Paradise Pink (#E63E62) is a color with RGB(230, 62, 98) and HSL(347.14°, 73.04%, 90.2%).

#E63E62 pairs strongly with #3EE6C2 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#E63E62 is suitable for Text, Button, Background and works well with Warm styles.

#E63E62 is commonly associated with Playful.

The name Paradise Pink is linked to Paradise Pink from English, meaning A shade of pink reminiscent of an idealized, beautiful place (paradise)..

Name, History & Etymology

Origin Word Paradise Pink
Meaning A shade of pink reminiscent of an idealized, beautiful place (paradise).
Language English
First Recorded Use Mid-20th Century

History

The color pink itself has a long history, often associated with youth, femininity, and romance. Its popularity has fluctuated, with significant peaks in the Rococo era (18th century) and again in the mid-20th century. The 'Paradise Pink' specific name, with its hex code #e63e62, is a modern commercial designation. It fits into a trend of using aspirational and evocative names for colors to enhance their appeal. The 'paradise' element suggests an idyllic, perhaps tropical or dreamlike quality, often associated with leisure and beauty.

First Recorded Use

The specific color name 'Paradise Pink' likely emerged with the expansion of commercial color naming in fashion, cosmetics, and interior design, particularly from the mid-20th century onwards. While pinks have existed forever, the evocative compound name points to a marketing-driven origin.

Cultural Associations

Culturally, 'Paradise Pink' evokes feelings of joy, fantasy, and escape. It's a vibrant, warm pink that can be seen in fashion to convey playfulness or boldness, in cosmetics for a youthful glow, and in design to create inviting or whimsical spaces. The 'paradise' descriptor adds a layer of exoticism and idealism, suggesting a perfect, untroubled state. It's less about a specific historical pigment and more about a modern, commercially appealing aesthetic.

Similar Named Colors

Cerise #DE3163 ΔE 3.73
Amaranth #E52B50 ΔE 4.03
Desire #EA3C53 ΔE 4.33
Red (Crayola) #EE204D ΔE 4.72

Code Snippets

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

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

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #E63E62,
        #D4F8F0
    );
}

// SCSS variable
$paradise-pink: #E63E62;

// With RGB channels (useful for rgba() usage)
$paradise-pink-r: 230;
$paradise-pink-g: 62;
$paradise-pink-b: 98;

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