Bittersweet Shimmer
HEX: #BF4F51 | Modern Palette
Color Specifications
#BF4F51
191, 79, 81
358°, 58% ,74%
0, 58.64, 57.59, 25.1
About Bittersweet Shimmer
Bittersweet Shimmer (#BF4F51) is a color with RGB(191, 79, 81) and HSL(358.93°, 58.64%, 74.9%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #4FBFBD, which creates strong contrast. Its triadic palette includes #51BF4F and #4F51BF.
- HEX: #BF4F51
- RGB: 191, 79, 81
- HSL: 358.93°, 58.64%, 74.9%
- Mood: Romantic
- Style: Warm
- Use case: Text, Button, Logo
- Complementary color: #4FBFBD
- Triadic colors: #51BF4F, #4F51BF
Live Components
Color Palettes
Bittersweet Shimmer #BF4F51 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
Bittersweet Shimmer #BF4F51 pairs with #4FBFBD as its complementary color, and #51BF4F and #4F51BF 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: #BF4F51;
}
/* Text */
.element {
color: #BF4F51;
}
/* Border */
.element {
border: 1px solid #BF4F51;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#BF4F51,
#99E5E3
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#BF4F51,
#99E5E3
);
}
// SCSS variable
$bittersweet-shimmer: #BF4F51;
// With RGB channels (useful for rgba() usage)
$bittersweet-shimmer-r: 191;
$bittersweet-shimmer-g: 79;
$bittersweet-shimmer-b: 81;
// Usage
.element {
background-color: $bittersweet-shimmer;
color: rgba($bittersweet-shimmer-r, $bittersweet-shimmer-g, $bittersweet-shimmer-b, 0.8);
}