Antique Ruby
HEX: #841B2D | Modern Palette
Color Specifications
#841B2D
132, 27, 45
349°, 79% ,51%
0, 79.55, 65.91, 48.24
About Antique Ruby
Antique Ruby (#841B2D) is a color with RGB(132, 27, 45) and HSL(349.71°, 79.55%, 51.76%). It is commonly associated with Energetic, Romantic moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #1B8472, which creates strong contrast. Its triadic palette includes #2D841B and #1B2D84. The name comes from Antique Ruby (English).
- HEX: #841B2D
- RGB: 132, 27, 45
- HSL: 349.71°, 79.55%, 51.76%
- Mood: Energetic, Romantic
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #1B8472
- Triadic colors: #2D841B, #1B2D84
- The name comes from Antique Ruby (English).
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 #841B2D from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color 'ruby' itself derives from the gemstone, known since antiquity. Rubies have been prized for their deep red color, symbolizing passion, power, and wealth across many cultures. The addition of 'antique' suggests a slightly muted, perhaps more brownish or purplish-red than a vibrant, pure red, evoking the patina and depth of an older, cherished gem. This naming convention became popular as industries sought more evocative and specific color descriptors.
First Recorded Use
While 'ruby' as a color has existed for centuries, the specific compound 'Antique Ruby' likely emerged as a descriptive color name in fashion, interior design, or paint industries during the late 19th or early 20th century to differentiate it from brighter or more modern ruby shades. Precise first use is difficult to pinpoint without specific historical color catalogs.
Cultural Associations
This color often evokes a sense of classic elegance, richness, and historical depth. It's frequently associated with luxury, vintage aesthetics, and a sophisticated, mature palette. It can be seen in traditional textiles, upholstery, formal wear, and decorative arts, often paired with gold, deep greens, or creams to enhance its opulent feel.
Code Snippets
/* Background */
.element {
background-color: #841B2D;
}
/* Text */
.element {
color: #841B2D;
}
/* Border */
.element {
border: 1px solid #841B2D;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#841B2D,
#22E6C4
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#841B2D,
#22E6C4
);
}
// SCSS variable
$antique-ruby: #841B2D;
// With RGB channels (useful for rgba() usage)
$antique-ruby-r: 132;
$antique-ruby-g: 27;
$antique-ruby-b: 45;
// Usage
.element {
background-color: $antique-ruby;
color: rgba($antique-ruby-r, $antique-ruby-g, $antique-ruby-b, 0.8);
}