French Wine

HEX: #AC1E44 | Modern Palette

On White
6.95:1
PASS
On Black
3.02:1
FAIL

Color Specifications

HEX
#AC1E44
RGB
172, 30, 68
HSL
343°, 82% ,67%
CMYK
0, 82.56, 60.47, 32.55

About French Wine

French Wine (#AC1E44) is a color with RGB(172, 30, 68) and HSL(343.94°, 82.56%, 67.45%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #1EAC86, which creates strong contrast. Its triadic palette includes #44AC1E and #1E44AC.

  • HEX: #AC1E44
  • RGB: 172, 30, 68
  • HSL: 343.94°, 82.56%, 67.45%
  • Mood: Energetic, Bold
  • Style: Vivid, Warm
  • Use case: Text, Button, Accent
  • Complementary color: #1EAC86
  • Triadic colors: #44AC1E, #1E44AC

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 #AC1E44 from deepest shade to lightest tint.

Color Characteristics

Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #65653F
Protanopia #434345
Tritanopia #AB2525
Achromatopsia #5A5A5A

Frequently Asked Questions

French Wine (#AC1E44) is a color with RGB(172, 30, 68) and HSL(343.94°, 82.56%, 67.45%).

#AC1E44 pairs strongly with #1EAC86 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#AC1E44 is suitable for Text, Button, Accent and works well with Vivid, Warm styles.

#AC1E44 is commonly associated with Energetic, Bold.

Similar Named Colors

Deep Carmine #A9203E ΔE 1.86
Amaranth Deep Purple #AB274F ΔE 2.92
Big Dip O’ruby #9C2542 ΔE 2.99
Vivid Burgundy #9F1D35 ΔE 4.27

Code Snippets

/* Background */
.element {
    background-color: #AC1E44;
}

/* Text */
.element {
    color: #AC1E44;
}

/* Border */
.element {
    border: 1px solid #AC1E44;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #AC1E44,
        #67F1CC
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #AC1E44,
        #67F1CC
    );
}

// SCSS variable
$french-wine: #AC1E44;

// With RGB channels (useful for rgba() usage)
$french-wine-r: 172;
$french-wine-g: 30;
$french-wine-b: 68;

// Usage
.element {
    background-color: $french-wine;
    color: rgba($french-wine-r, $french-wine-g, $french-wine-b, 0.8);
}