Rose Pink
HEX: #FF66CC | Modern Palette
Color Specifications
#FF66CC
255, 102, 204
320°, 100% ,70%
0, 60, 20, 0
About Rose Pink
Rose Pink (#FF66CC) is a color with RGB(255, 102, 204) and HSL(320°, 100%, 70%). 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 #66FF99, which creates strong contrast. Its triadic palette includes #CCFF66 and #66CCFF. The name comes from Rose Pink (English).
- HEX: #FF66CC
- RGB: 255, 102, 204
- HSL: 320°, 100%, 70%
- Mood: Energetic, Bold
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #66FF99
- Triadic colors: #CCFF66, #66CCFF
- The name comes from Rose Pink (English).
Live Components
Color Palettes
Rose Pink #FF66CC 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
Rose Pink #FF66CC pairs with #66FF99 as its complementary color, and #CCFF66 and #66CCFF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The color 'rose pink' is a straightforward descriptive name, combining the flower 'rose' with the color 'pink'. Pink itself, as a distinct color name, only became common in the 17th century. Before that, it was often described as a light red. The specific 'rose pink' hue gained popularity in fashion and art, particularly during periods that favored pastel and floral aesthetics, such as the Rococo era and later in Victorian times. Its association with roses gives it connotations of beauty, romance, and femininity. In the digital age, 'rose pink' is often associated with specific hex codes like #FF66CC, which is a vibrant, medium-to-light pink.
First Recorded Use
The term 'rose pink' as a color descriptor likely emerged as roses became more widely cultivated and their specific shades were distinguished. Early references to 'rose' as a color date back further, but 'rose pink' specifies a particular hue.
Cultural Associations
Rose pink is widely associated with femininity, love, and romance, largely due to its connection with the rose flower, a universal symbol of these concepts. It is frequently used in bridal wear, baby girl items, and romantic gifts. In some cultures, pink, including rose pink, can also symbolize youth, innocence, and sweetness. It has seen various trends in fashion, from the delicate shades of the 18th century to the more vibrant interpretations of the 20th and 21st centuries. It's a popular choice for cosmetics, interior design, and branding that aims for a soft, appealing, or luxurious feel.
Code Snippets
/* Background */
.element {
background-color: #FF66CC;
}
/* Text */
.element {
color: #FF66CC;
}
/* Border */
.element {
border: 1px solid #FF66CC;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FF66CC,
#66FF99
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FF66CC,
#66FF99
);
}
// SCSS variable
$rose-pink: #FF66CC;
// With RGB channels (useful for rgba() usage)
$rose-pink-r: 255;
$rose-pink-g: 102;
$rose-pink-b: 204;
// Usage
.element {
background-color: $rose-pink;
color: rgba($rose-pink-r, $rose-pink-g, $rose-pink-b, 0.8);
}