French Raspberry
HEX: #C72C48 | Modern Palette
Color Specifications
#C72C48
199, 44, 72
349°, 77% ,78%
0, 77.89, 63.82, 21.96
About French Raspberry
French Raspberry (#C72C48) is a color with RGB(199, 44, 72) and HSL(349.16°, 77.89%, 78.04%). It is commonly associated with Playful, Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #2CC7AB, which creates strong contrast. Its triadic palette includes #48C72C and #2C48C7.
- HEX: #C72C48
- RGB: 199, 44, 72
- HSL: 349.16°, 77.89%, 78.04%
- Mood: Playful, Romantic
- Style: Warm
- Use case: Text, Button, Accent
- Complementary color: #2CC7AB
- Triadic colors: #48C72C, #2C48C7
Live Components
Color Palettes
French Raspberry #C72C48 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
French Raspberry #C72C48 pairs with #2CC7AB as its complementary color, and #48C72C and #2C48C7 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #C72C48;
}
/* Text */
.element {
color: #C72C48;
}
/* Border */
.element {
border: 1px solid #C72C48;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#C72C48,
#9BF3E3
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#C72C48,
#9BF3E3
);
}
// SCSS variable
$french-raspberry: #C72C48;
// With RGB channels (useful for rgba() usage)
$french-raspberry-r: 199;
$french-raspberry-g: 44;
$french-raspberry-b: 72;
// Usage
.element {
background-color: $french-raspberry;
color: rgba($french-raspberry-r, $french-raspberry-g, $french-raspberry-b, 0.8);
}