Paradise Pink
HEX: #E63E62 | Modern Palette
Color Specifications
#E63E62
230, 62, 98
347°, 73% ,90%
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
Color Palettes
Paradise Pink #E63E62 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Paradise Pink #E63E62 pairs with #3EE6C2 as its complementary color, and #62E63E and #3E62E6 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#8C8C5B
#656563
#E54444
#7F7F7F
Frequently Asked Questions
Name, History & Etymology
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.
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);
}