Carnation Pink
HEX: #FFA6C9 | Modern Palette
Color Specifications
#FFA6C9
255, 166, 201
336°, 100% ,82%
0, 35, 21, 0
About Carnation Pink
Carnation Pink (#FFA6C9) is a color with RGB(255, 166, 201) and HSL(336.4°, 100%, 82.5%). It is commonly associated with Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Background. Its complementary color is #A6FFDC, which creates strong contrast. Its triadic palette includes #C9FFA6 and #A6C9FF. The name comes from Carnation Pink (English).
- HEX: #FFA6C9
- RGB: 255, 166, 201
- HSL: 336.4°, 100%, 82.5%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #A6FFDC
- Triadic colors: #C9FFA6, #A6C9FF
- The name comes from Carnation 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 #FFA6C9 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color pink itself has a long history, but specific named shades like 'Carnation Pink' are a more modern phenomenon. Carnations (Dianthus caryophyllus) have been cultivated for centuries, and pink varieties have always been common. The naming of a color after a flower is a common practice to evoke a specific visual and emotional quality. 'Carnation Pink' specifically refers to a soft, medium pink, often with a slightly warm undertone, distinct from more vibrant fuchsias or paler baby pinks. Its use became widespread in various industries, from crayons to paints to textiles.
First Recorded Use
The specific color name 'Carnation Pink' likely gained popularity in the early 20th century, particularly with the standardization of color names in fashion, cosmetics, and art supplies. While pink carnations existed much earlier, the precise naming of this specific hue as 'Carnation Pink' points to this period.
Cultural Associations
Carnation Pink is often associated with femininity, sweetness, and innocence. In Western cultures, pink is frequently linked to baby girls, and 'Carnation Pink' fits well within this palette. Carnations themselves have various symbolic meanings depending on their color; pink carnations often symbolize gratitude, admiration, and a mother's undying love. The color can evoke feelings of tenderness and charm. It's a popular color for spring and summer fashion, children's items, and romantic themes.
Code Snippets
/* Background */
.element {
background-color: #FFA6C9;
}
/* Text */
.element {
color: #FFA6C9;
}
/* Border */
.element {
border: 1px solid #FFA6C9;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFA6C9,
#A6FFDC
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFA6C9,
#A6FFDC
);
}
// SCSS variable
$carnation-pink: #FFA6C9;
// With RGB channels (useful for rgba() usage)
$carnation-pink-r: 255;
$carnation-pink-g: 166;
$carnation-pink-b: 201;
// Usage
.element {
background-color: $carnation-pink;
color: rgba($carnation-pink-r, $carnation-pink-g, $carnation-pink-b, 0.8);
}