French Rose
HEX: #F64A8A | Modern Palette
Color Specifications
#F64A8A
246, 74, 138
337°, 90% ,62%
0, 70, 44, 4
About French Rose
French Rose (#F64A8A) is a color with RGB(246, 74, 138) and HSL(337.7°, 90.5%, 62.7%). 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 #4AF6B6, which creates strong contrast. Its triadic palette includes #8AF64A and #4A8AF6. The name comes from French Rose (English).
- HEX: #F64A8A
- RGB: 246, 74, 138
- HSL: 337.7°, 90.5%, 62.7%
- Mood: Energetic, Bold
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #4AF6B6
- Triadic colors: #8AF64A, #4A8AF6
- The name comes from French Rose (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 #F64A8A from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The Rosa gallica, or French Rose, is one of the oldest cultivated roses, with a history dating back to ancient Greece and Rome. It was widely cultivated in medieval European gardens, particularly in France, where it became very popular and was used for perfumes, medicines, and ornamental purposes. The color 'French Rose' captures the vibrant, often rich pink-red hue characteristic of many varieties of this rose. Its adoption as a color name reflects the enduring appeal and historical significance of the flower.
First Recorded Use
While the rose itself has ancient origins, the specific color name 'French Rose' as a standardized or commonly recognized color in fashion, art, or cosmetics likely emerged in the late 19th or early 20th century, coinciding with the rise of color naming conventions in industry.
Cultural Associations
The French Rose is a symbol of beauty, love, and France itself. It has been featured in art, literature, and heraldry for centuries. The color 'French Rose' evokes a sense of classic romance, elegance, and a touch of vintage charm. It is often associated with femininity, sophistication, and a certain timeless appeal. In fashion and design, it can be seen as a more muted or classic alternative to brighter fuchsias, offering a refined yet vibrant pink.
Code Snippets
/* Background */
.element {
background-color: #F64A8A;
}
/* Text */
.element {
color: #F64A8A;
}
/* Border */
.element {
border: 1px solid #F64A8A;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#F64A8A,
#4AF6B6
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#F64A8A,
#4AF6B6
);
}
// SCSS variable
$french-rose: #F64A8A;
// With RGB channels (useful for rgba() usage)
$french-rose-r: 246;
$french-rose-g: 74;
$french-rose-b: 138;
// Usage
.element {
background-color: $french-rose;
color: rgba($french-rose-r, $french-rose-g, $french-rose-b, 0.8);
}