Brink Pink
HEX: #FB607F | Modern Palette
Color Specifications
#FB607F
251, 96, 127
348°, 95% ,68%
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
Color Palettes
Brink Pink #FB607F 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
Brink Pink #FB607F pairs with #60FBDC as its complementary color, and #7FFB60 and #607FFB in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}