Amaranth Pink
HEX: #F19CBB | Modern Palette
Color Specifications
#F19CBB
241, 156, 187
338°, 35% ,94%
0, 35.27, 22.41, 5.49
About Amaranth Pink
Amaranth Pink (#F19CBB) is a color with RGB(241, 156, 187) and HSL(338.12°, 35.27%, 94.51%). In design, it fits Warm styles and is suitable for Text, Background, Print. Its complementary color is #9CF1D2, which creates strong contrast. Its triadic palette includes #BBF19C and #9CBBF1. The name comes from Amaranth Pink (English).
- HEX: #F19CBB
- RGB: 241, 156, 187
- HSL: 338.12°, 35.27%, 94.51%
- Style: Warm
- Use case: Text, Background, Print
- Complementary color: #9CF1D2
- Triadic colors: #BBF19C, #9CBBF1
- The name comes from Amaranth Pink (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 #F19CBB from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#BABAB9
#A8A8BB
#EEA0A0
#B5B5B5
Frequently Asked Questions
Name, History & Etymology
History
The color 'amaranth' itself is named after the amaranth plant, known for its vibrant, long-lasting flowers, which often range from deep red to purplish-red. 'Amaranth Pink' specifically refers to a lighter, more pinkish interpretation of this floral hue. It falls within the broader spectrum of pinks, often characterized by a slight warmth or a hint of purple that distinguishes it from a pure, cool pink. Its use has been prevalent in textiles, cosmetics, and interior design, often chosen for its soft yet distinct vibrancy.
First Recorded Use
The term 'amaranth' as a color name (referring to a reddish-purple) dates back to the late 17th century. 'Amaranth Pink' as a specific shade likely emerged later, as color naming became more nuanced, particularly in fashion and art, around the late 19th or early 20th century. Exact first use is difficult to pinpoint without specific historical color charts or fashion magazines from that era.
Cultural Associations
Pink, in general, is often associated with femininity, sweetness, romance, and tenderness in Western cultures. 'Amaranth Pink,' with its floral namesake, can evoke feelings of natural beauty, delicate charm, and a touch of sophistication. It's a color that can be seen as playful yet elegant, making it versatile in various cultural contexts, from children's wear to high fashion.
Code Snippets
/* Background */
.element {
background-color: #F19CBB;
}
/* Text */
.element {
color: #F19CBB;
}
/* Border */
.element {
border: 1px solid #F19CBB;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#F19CBB,
#ECF6F2
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#F19CBB,
#ECF6F2
);
}
// SCSS variable
$amaranth-pink: #F19CBB;
// With RGB channels (useful for rgba() usage)
$amaranth-pink-r: 241;
$amaranth-pink-g: 156;
$amaranth-pink-b: 187;
// Usage
.element {
background-color: $amaranth-pink;
color: rgba($amaranth-pink-r, $amaranth-pink-g, $amaranth-pink-b, 0.8);
}