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
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 #BE4F62 from deepest shade to lightest tint.
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);
}