Bittersweet Shimmer

HEX: #BF4F51 | Modern Palette

On White
4.72:1
PASS
On Black
4.45:1
FAIL

Color Specifications

HEX
#BF4F51
RGB
191, 79, 81
HSL
358°, 58% ,74%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Romantic
Style
Warm
Use case
Text Button Logo

Accessibility Simulation

Deuteranopia #7D7D4C
Protanopia #646452
Tritanopia #BF4F4F
Achromatopsia #737373

Frequently Asked Questions

Bittersweet Shimmer (#BF4F51) is a color with RGB(191, 79, 81) and HSL(358.93°, 58.64%, 74.9%).

#BF4F51 pairs strongly with #4FBFBD as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#BF4F51 is suitable for Text, Button, Logo and works well with Warm styles.

#BF4F51 is commonly associated with Romantic.

Similar Named Colors

Deep Chestnut #B94E48 ΔE 2.87
Dark Terra Cotta #CC4E5C ΔE 3.97
Brick Red #CB4154 ΔE 4.09
Rose Vale #AB4E52 ΔE 4.51

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);
}