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
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 #C72C48 from deepest shade to lightest tint.
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);
}