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