Ruby Red
HEX: #9B111E | Modern Palette
Color Specifications
#9B111E
155, 17, 30
354°, 89% ,60%
0, 89.03, 80.65, 39.22
About Ruby Red
Ruby Red (#9B111E) is a color with RGB(155, 17, 30) and HSL(354.35°, 89.03%, 60.78%). 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 #119B8E, which creates strong contrast. Its triadic palette includes #1E9B11 and #111E9B. The name comes from Ruby Red (English).
- HEX: #9B111E
- RGB: 155, 17, 30
- HSL: 354.35°, 89.03%, 60.78%
- Mood: Energetic, Bold
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #119B8E
- Triadic colors: #1E9B11, #111E9B
- The name comes from Ruby Red (English).
Live Components
Color Palettes
Ruby Red #9B111E is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Ruby Red #9B111E pairs with #119B8E as its complementary color, and #1E9B11 and #111E9B in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The word 'ruby' itself comes from the Latin 'ruber' meaning red. Rubies have been prized gemstones for millennia, associated with passion, wealth, and power. The color 'ruby red' specifically refers to the rich, slightly purplish-red hue characteristic of the finest rubies. Its use as a color name became more formalized as industries began to standardize color palettes for paints, dyes, and fashion. It evokes a sense of luxury and intensity.
First Recorded Use
While 'ruby' as a color descriptor existed earlier, 'Ruby Red' as a distinct, named color gained prominence in the late 19th and early 20th centuries, particularly with the advent of standardized color charts and commercial product naming.
Cultural Associations
Ruby Red is often associated with love, passion, and romance, similar to the symbolism of the ruby gemstone. It can also signify power, courage, and vitality. In fashion, it's considered a classic, bold color. In popular culture, it's famously associated with Dorothy's 'Ruby Slippers' in 'The Wizard of Oz,' which gave the color an iconic, magical connotation. It's a popular color for luxury items, automotive finishes, and cosmetics.
Code Snippets
/* Background */
.element {
background-color: #9B111E;
}
/* Text */
.element {
color: #9B111E;
}
/* Border */
.element {
border: 1px solid #9B111E;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#9B111E,
#42F4E3
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#9B111E,
#42F4E3
);
}
// SCSS variable
$ruby-red: #9B111E;
// With RGB channels (useful for rgba() usage)
$ruby-red-r: 155;
$ruby-red-g: 17;
$ruby-red-b: 30;
// Usage
.element {
background-color: $ruby-red;
color: rgba($ruby-red-r, $ruby-red-g, $ruby-red-b, 0.8);
}