Sangria
HEX: #92000A | Modern Palette
Color Specifications
#92000A
146, 0, 10
355°, 100% ,57%
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
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 #92000A from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}