Brink Pink

HEX: #FB607F | Modern Palette

On White
2.97:1
FAIL
On Black
7.08:1
PASS

Color Specifications

HEX
#FB607F
RGB
251, 96, 127
HSL
348°, 95% ,68%
CMYK
0, 62, 49, 2

About Brink Pink

Brink Pink (#FB607F) is a color with RGB(251, 96, 127) and HSL(348°, 95.1%, 68%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #60FBDC, which creates strong contrast. Its triadic palette includes #7FFB60 and #607FFB. The name comes from Brink Pink (English).

  • HEX: #FB607F
  • RGB: 251, 96, 127
  • HSL: 348°, 95.1%, 68%
  • Mood: Energetic, Bold
  • Style: Vivid, Neon
  • Use case: Text, Button, Accent
  • Complementary color: #60FBDC
  • Triadic colors: #7FFB60, #607FFB
  • The name comes from Brink 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 #FB607F from deepest shade to lightest tint.

Color Characteristics

Style
Vivid Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #A2A27A
Protanopia #7E7E80
Tritanopia #FA6565
Achromatopsia #969696

Frequently Asked Questions

Brink Pink (#FB607F) is a color with RGB(251, 96, 127) and HSL(348°, 95.1%, 68%).

#FB607F pairs strongly with #60FBDC as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#FB607F is suitable for Text, Button, Accent and works well with Vivid, Neon styles.

#FB607F is commonly associated with Energetic, Bold.

The name Brink Pink is linked to Brink Pink from English, meaning A vivid, bright pink color, often described as being on the 'brink' of red or a very intense, almost neon pink..

Name, History & Etymology

Origin Word Brink Pink
Meaning A vivid, bright pink color, often described as being on the 'brink' of red or a very intense, almost neon pink.
Language English
First Recorded Use Late 20th Century - Early 21st Century

History

While 'pink' as a color has a long history, specific descriptive names like 'Brink Pink' are more recent phenomena. The term 'brink' implies being at an edge or verge, suggesting a pink that is pushed to its limit in terms of vibrancy or proximity to red. This kind of descriptive naming became more common as people sought more nuanced ways to differentiate between the vast array of available colors, especially with the advent of digital color palettes and the internet's influence on fashion and design trends. It's not a traditional color name like 'cerise' or 'fuchsia' but rather a modern, evocative descriptor.

First Recorded Use

The exact first use is difficult to pinpoint as 'Brink Pink' appears to be a descriptive, informal color name rather than a formally registered or historically documented one. It likely emerged in common parlance, fashion, or design contexts as a way to describe a particularly intense shade of pink, possibly gaining traction with the rise of digital color naming and online communities discussing specific hues.

Cultural Associations

Colors like 'Brink Pink' often resonate with themes of vibrancy, playfulness, and modernity. In contemporary culture, intense pinks can be associated with pop culture, fashion statements, and a certain boldness. It might be seen in contexts ranging from cosmetics and apparel to graphic design and art, often conveying energy and a youthful spirit. Its intensity can make it a statement color.

Similar Named Colors

Wild Watermelon #FC6C85 ΔE 2.25
Strawberry #FC5A8D ΔE 4.41
Light Crimson #F56991 ΔE 4.42
Light Carmine Pink #E66771 ΔE 5.15

Code Snippets

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

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

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FB607F,
        #60FBDC
    );
}

// SCSS variable
$brink-pink: #FB607F;

// With RGB channels (useful for rgba() usage)
$brink-pink-r: 251;
$brink-pink-g: 96;
$brink-pink-b: 127;

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