New York Pink
HEX: #D7837F | Modern Palette
Color Specifications
#D7837F
215, 131, 127
2°, 40% ,84%
0, 39.07, 40.93, 15.69
About New York Pink
New York Pink (#D7837F) is a color with RGB(215, 131, 127) and HSL(2.73°, 40.93%, 84.31%). In design, it fits Warm styles and is suitable for Text, Background, Print. Its complementary color is #7FD3D7, which creates strong contrast. Its triadic palette includes #7FD783 and #837FD7. The name comes from New York Pink (English).
- HEX: #D7837F
- RGB: 215, 131, 127
- HSL: 2.73°, 40.93%, 84.31%
- Style: Warm
- Use case: Text, Background, Print
- Complementary color: #7FD3D7
- Triadic colors: #7FD783, #837FD7
- The name comes from New York Pink (English).
Live Components
Color Palettes
New York Pink #D7837F 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
New York Pink #D7837F pairs with #7FD3D7 as its complementary color, and #7FD783 and #837FD7 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#A1A17C
#8F8F80
#D78383
#9A9A9A
Frequently Asked Questions
Name, History & Etymology
History
Color names like 'New York Pink' are often coined by designers, artists, or marketing professionals to evoke a certain feeling or association. While not a traditional historical color like 'Tyrian Purple,' its emergence reflects a modern trend of naming colors after places to imbue them with a sense of identity and style. The specific hex code #d7837f represents a muted, somewhat dusty rose or terracotta-pink, which could be seen as sophisticated and urban, fitting a 'New York' aesthetic.
First Recorded Use
The exact first use is difficult to pinpoint, but the naming convention for colors often follows cultural trends. 'New York Pink' likely emerged as a descriptive term for a particular shade that resonated with the city's aesthetic, possibly in fashion, design, or cosmetics.
Cultural Associations
The name 'New York Pink' suggests an association with the energy, fashion, and perhaps even the brickwork or sunsets of New York City. It implies a certain level of urban chic and sophistication. It's a color that could be found in a trendy boutique, an art gallery, or a stylish apartment in the city.
Code Snippets
/* Background */
.element {
background-color: #D7837F;
}
/* Text */
.element {
color: #D7837F;
}
/* Border */
.element {
border: 1px solid #D7837F;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#D7837F,
#C7E6E7
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#D7837F,
#C7E6E7
);
}
// SCSS variable
$new-york-pink: #D7837F;
// With RGB channels (useful for rgba() usage)
$new-york-pink-r: 215;
$new-york-pink-g: 131;
$new-york-pink-b: 127;
// Usage
.element {
background-color: $new-york-pink;
color: rgba($new-york-pink-r, $new-york-pink-g, $new-york-pink-b, 0.8);
}