Classic Rose
HEX: #FBCCE7 | Modern Palette
Color Specifications
#FBCCE7
251, 204, 231
325°, 85% ,89%
0, 19, 8, 2
About Classic Rose
Classic Rose (#FBCCE7) is a color with RGB(251, 204, 231) and HSL(325.5°, 85.5%, 89.2%). 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 #CCFBE0, which creates strong contrast. Its triadic palette includes #E7FBCC and #CCE7FB. The name comes from Classic Rose (English).
- HEX: #FBCCE7
- RGB: 251, 204, 231
- HSL: 325.5°, 85.5%, 89.2%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #CCFBE0
- Triadic colors: #E7FBCC, #CCE7FB
- The name comes from Classic Rose (English).
Live Components
Color Palettes
Classic Rose #FBCCE7 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
Classic Rose #FBCCE7 pairs with #CCFBE0 as its complementary color, and #E7FBCC and #CCE7FB 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 pink itself has a long history, associated with femininity, romance, and sweetness. 'Rose' as a color name dates back to at least the 18th century. The addition of 'Classic' often implies a standard, traditional, or widely recognized version of a color. In the context of digital and commercial color palettes, 'Classic Rose' distinguishes it from other rose variations (e.g., 'Dusty Rose', 'Tea Rose', 'Deep Rose') by suggesting a quintessential, perhaps slightly muted but still vibrant, pink associated with the flower.
First Recorded Use
While the concept of 'rose' as a color is ancient, the specific descriptor 'Classic Rose' as a named color, particularly with a hex code like #fbcce7, likely emerged with digital color systems and commercial naming conventions in the late 20th century (1980s-1990s).
Cultural Associations
Culturally, 'Classic Rose' evokes feelings of elegance, nostalgia, and gentle beauty. It's often used in contexts related to weddings, vintage aesthetics, feminine products, and floral designs. It carries connotations of romance and tenderness without being overly bright or saccharine. It can also be seen as a sophisticated take on traditional pink.
Code Snippets
/* Background */
.element {
background-color: #FBCCE7;
}
/* Text */
.element {
color: #FBCCE7;
}
/* Border */
.element {
border: 1px solid #FBCCE7;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FBCCE7,
#CCFBE0
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FBCCE7,
#CCFBE0
);
}
// SCSS variable
$classic-rose: #FBCCE7;
// With RGB channels (useful for rgba() usage)
$classic-rose-r: 251;
$classic-rose-g: 204;
$classic-rose-b: 231;
// Usage
.element {
background-color: $classic-rose;
color: rgba($classic-rose-r, $classic-rose-g, $classic-rose-b, 0.8);
}