Medium Ruby
HEX: #AA4069 | Modern Palette
Color Specifications
#AA4069
170, 64, 105
336°, 62% ,66%
0, 62.35, 38.24, 33.33
About Medium Ruby
Medium Ruby (#AA4069) is a color with RGB(170, 64, 105) and HSL(336.79°, 62.35%, 66.67%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #40AA81, which creates strong contrast. Its triadic palette includes #69AA40 and #4069AA. The name comes from Medium Ruby (English).
- HEX: #AA4069
- RGB: 170, 64, 105
- HSL: 336.79°, 62.35%, 66.67%
- Mood: Romantic
- Style: Warm
- Use case: Text, Button, Accent
- Complementary color: #40AA81
- Triadic colors: #69AA40, #4069AA
- The name comes from Medium Ruby (English).
Live Components
Color Palettes
Medium Ruby #AA4069 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
Medium Ruby #AA4069 pairs with #40AA81 as its complementary color, and #69AA40 and #4069AA 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, and their characteristic red color has long been used as a descriptor. The addition of 'medium' serves to differentiate it from lighter 'pale ruby' or darker 'deep ruby' shades, becoming particularly important in fields like fashion, interior design, and digital media where precise color communication is essential. The hex code #aa4069 further solidifies its modern, standardized usage.
First Recorded Use
The specific compound term 'Medium Ruby' as a precise color descriptor likely gained traction with the advent of standardized color systems and digital color representation. While 'ruby' as a color has existed for centuries, the 'medium' qualifier for precise color communication is more recent.
Cultural Associations
Rubies are often associated with passion, love, power, and royalty across many cultures. The 'ruby red' color is frequently used in symbolism for these concepts. As a 'medium ruby,' it retains these associations but perhaps with a slightly less intense or aggressive connotation than a very deep, dark ruby red, making it versatile for various applications.
Code Snippets
/* Background */
.element {
background-color: #AA4069;
}
/* Text */
.element {
color: #AA4069;
}
/* Border */
.element {
border: 1px solid #AA4069;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#AA4069,
#75DFB6
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#AA4069,
#75DFB6
);
}
// SCSS variable
$medium-ruby: #AA4069;
// With RGB channels (useful for rgba() usage)
$medium-ruby-r: 170;
$medium-ruby-g: 64;
$medium-ruby-b: 105;
// Usage
.element {
background-color: $medium-ruby;
color: rgba($medium-ruby-r, $medium-ruby-g, $medium-ruby-b, 0.8);
}