Big Dip O’ruby
HEX: #9C2542 | Modern Palette
Color Specifications
#9C2542
156, 37, 66
345°, 76% ,61%
0, 76.28, 57.69, 38.82
About Big Dip O’ruby
Big Dip O’ruby (#9C2542) is a color with RGB(156, 37, 66) and HSL(345.38°, 76.28%, 61.18%). It is commonly associated with Energetic, Playful moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #259C7F, which creates strong contrast. Its triadic palette includes #429C25 and #25429C. The name comes from Big Dip O’ruby (English (American Slang)).
- HEX: #9C2542
- RGB: 156, 37, 66
- HSL: 345.38°, 76.28%, 61.18%
- Mood: Energetic, Playful
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #259C7F
- Triadic colors: #429C25, #25429C
- The name comes from Big Dip O’ruby (English (American Slang)).
Live Components
Color Palettes
Big Dip O’ruby #9C2542 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
Big Dip O’ruby #9C2542 pairs with #259C7F as its complementary color, and #429C25 and #25429C 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 phrase 'Big Dip O’ruby' appears to be a whimsical, perhaps regional or niche, slang term from the early 20th century, likely originating in American English. The 'dip' clearly refers to a scoop, particularly in the context of ice cream. The addition of 'O’ruby' is more evocative; 'ruby' is a color often associated with red fruits like cherries or raspberries, common ice cream flavors or toppings. It could also be a playful personification or a reference to something precious, implying a highly desired or generous serving. Its usage was likely informal and perhaps limited to specific social groups or regions, as it doesn't appear to have gained widespread, lasting popularity in mainstream English.
First Recorded Use
Circa 1920s-1930s
Cultural Associations
This phrase reflects a period in American culture where food, particularly desserts like ice cream, was becoming more accessible and a source of simple pleasure. The playful nature of the phrase aligns with the lighthearted slang often found during the Roaring Twenties and the subsequent decades, a time of significant social and cultural change. It evokes an image of an old-fashioned soda fountain or ice cream parlor.
Code Snippets
/* Background */
.element {
background-color: #9C2542;
}
/* Text */
.element {
color: #9C2542;
}
/* Border */
.element {
border: 1px solid #9C2542;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#9C2542,
#50E8C3
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#9C2542,
#50E8C3
);
}
// SCSS variable
$big-dip-o’ruby: #9C2542;
// With RGB channels (useful for rgba() usage)
$big-dip-o’ruby-r: 156;
$big-dip-o’ruby-g: 37;
$big-dip-o’ruby-b: 66;
// Usage
.element {
background-color: $big-dip-o’ruby;
color: rgba($big-dip-o’ruby-r, $big-dip-o’ruby-g, $big-dip-o’ruby-b, 0.8);
}