Sangria

HEX: #92000A | Modern Palette

On White
9.43:1
PASS
On Black
2.23:1
FAIL

Color Specifications

HEX
#92000A
RGB
146, 0, 10
HSL
355°, 100% ,57%
CMYK
0, 100, 93.15, 42.75

About Sangria

Sangria (#92000A) is a color with RGB(146, 0, 10) and HSL(355.89°, 100%, 57.25%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #009288, which creates strong contrast. Its triadic palette includes #0A9200 and #000A92. The name comes from sangría (Spanish).

  • HEX: #92000A
  • RGB: 146, 0, 10
  • HSL: 355.89°, 100%, 57.25%
  • Mood: Energetic, Bold
  • Style: Vivid, Neon
  • Use case: Text, Button, Accent
  • Complementary color: #009288
  • Triadic colors: #0A9200, #000A92
  • The name comes from sangría (Spanish).

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

Color Characteristics

Style
Vivid Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #525200
Protanopia #31310E
Tritanopia #920101
Achromatopsia #464646

Frequently Asked Questions

Sangria (#92000A) is a color with RGB(146, 0, 10) and HSL(355.89°, 100%, 57.25%).

#92000A pairs strongly with #009288 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#92000A is suitable for Text, Button, Accent and works well with Vivid, Neon styles.

#92000A is commonly associated with Energetic, Bold.

The name Sangria is linked to sangría from Spanish, meaning bleeding, bloodletting.

Name, History & Etymology

Origin Word sangría
Meaning bleeding, bloodletting
Language Spanish
First Recorded Use 18th Century

History

Sangria's roots are in Spain and Portugal, where it was common to mix wine with fruit, spices, and other ingredients. This practice dates back centuries, partly as a way to make wine more palatable or to preserve fruit. The name 'sangria' (meaning 'bleeding' or 'bloodletting' in Spanish) likely refers to the drink's deep red color, reminiscent of blood. While variations of wine and fruit punches existed for a long time, the specific term 'sangria' for the modern drink gained prominence. It became particularly popular outside of the Iberian Peninsula after being introduced at the 1964 New York World's Fair by the Spanish pavilion.

First Recorded Use

The term 'sangría' for the drink is believed to have originated in Spain, with early forms of the beverage existing before the specific name became widespread. The first recorded use of 'sangaree' (an earlier, related drink) in English dates to the 18th century, while 'sangria' as we know it became more common in the 19th and 20th centuries.

Cultural Associations

Sangria is deeply embedded in Spanish and Portuguese culture, often served at social gatherings, fiestas, and meals. It's seen as a refreshing, communal drink, especially popular during warmer months. While traditionally red wine-based, white wine (sangria blanca) and even sparkling wine versions are also common. The specific fruits and spirits used can vary widely by region and personal preference, making it a versatile beverage. It symbolizes hospitality and celebration in many contexts.

Similar Named Colors

Dark Red #8B0000 ΔE 2.10
Crimson Red #990000 ΔE 2.69
Deep Red #850101 ΔE 2.74
Spartan Crimson #9E1316 ΔE 3.16

Code Snippets

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

/* Text */
.element {
    color: #92000A;
}

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #92000A,
        #25FFF0
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #92000A,
        #25FFF0
    );
}

// SCSS variable
$sangria: #92000A;

// With RGB channels (useful for rgba() usage)
$sangria-r: 146;
$sangria-g: 0;
$sangria-b: 10;

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