Popstar

HEX: #BE4F62 | Modern Palette

On White
4.68:1
PASS
On Black
4.48:1
FAIL

Color Specifications

HEX
#BE4F62
RGB
190, 79, 98
HSL
349°, 58% ,74%
CMYK
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

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

Color Characteristics

Mood
Romantic
Style
Warm
Use case
Text Button Logo

Accessibility Simulation

Deuteranopia #7D7D5E
Protanopia #636363
Tritanopia #BD5252
Achromatopsia #747474

Frequently Asked Questions

Popstar (#BE4F62) is a color with RGB(190, 79, 98) and HSL(349.73°, 58.42%, 74.51%).

#BE4F62 pairs strongly with #4FBEAB as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#BE4F62 is suitable for Text, Button, Logo and works well with Warm styles.

#BE4F62 is commonly associated with Romantic.

The name Popstar is linked to Popstar from English, meaning A famous singer of pop music..

Name, History & Etymology

Origin Word Popstar
Meaning A famous singer of pop music.
Language English
First Recorded Use Late 20th Century

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.

Similar Named Colors

Dark Terra Cotta #CC4E5C ΔE 3.95
Brick Red #CB4154 ΔE 4.40
Deep Puce #A95C68 ΔE 5.15
English Red #AB4B52 ΔE 5.35

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);
}