Popstar
HEX: #BE4F62 | Modern Palette
Color Specifications
#BE4F62
190, 79, 98
349°, 58% ,74%
0, 58.42, 48.42, 25.49
About Popstar
Popstar (#BE4F62) is a color with RGB(190, 79, 98) and HSL(349.73°, 58.42%, 74.51%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #4FBEAB, which creates strong contrast. Its triadic palette includes #62BE4F and #4F62BE. The name comes from Popstar (English).
- HEX: #BE4F62
- RGB: 190, 79, 98
- HSL: 349.73°, 58.42%, 74.51%
- Mood: Romantic
- Style: Warm
- Use case: Text, Button, Logo
- Complementary color: #4FBEAB
- Triadic colors: #62BE4F, #4F62BE
- The name comes from Popstar (English).
Live Components
Color Palettes
Popstar #BE4F62 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
Popstar #BE4F62 pairs with #4FBEAB as its complementary color, and #62BE4F and #4F62BE in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The concept of a 'star' in entertainment dates back much further, but the 'popstar' specifically refers to the post-rock and roll era where popular music became a dominant cultural force. The rise of MTV in the 1980s, global music distribution, and the increasing importance of image and music videos further cemented the 'popstar' as a distinct type of celebrity. Early examples might include figures like Michael Jackson or Madonna, who transcended music to become global cultural icons.
First Recorded Use
The term 'popstar' emerged as a portmanteau of 'pop' (music) and 'star' (a famous performer) to specifically describe individuals who achieved widespread fame and success primarily within the pop music genre. While 'pop music' itself has roots earlier in the 20th century, the distinct term 'popstar' became more prevalent as the music industry solidified the genre and its associated celebrity culture.
Cultural Associations
Popstars often embody aspirational qualities, fashion trends, and youth culture. They are frequently at the forefront of musical innovation within the mainstream and are subject to intense media scrutiny. Their influence extends beyond music into fashion, social trends, and sometimes even political discourse. The term carries connotations of glamour, mass appeal, and often, a carefully constructed public persona.
Code Snippets
/* Background */
.element {
background-color: #BE4F62;
}
/* Text */
.element {
color: #BE4F62;
}
/* Border */
.element {
border: 1px solid #BE4F62;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#BE4F62,
#98E4D7
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#BE4F62,
#98E4D7
);
}
// SCSS variable
$popstar: #BE4F62;
// With RGB channels (useful for rgba() usage)
$popstar-r: 190;
$popstar-g: 79;
$popstar-b: 98;
// Usage
.element {
background-color: $popstar;
color: rgba($popstar-r, $popstar-g, $popstar-b, 0.8);
}