Vivid Auburn
HEX: #922724 | Modern Palette
Color Specifications
#922724
146, 39, 36
1°, 75% ,57%
0, 73.29, 75.34, 42.75
About Vivid Auburn
Vivid Auburn (#922724) is a color with RGB(146, 39, 36) and HSL(1.64°, 75.34%, 57.25%). 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 #248F92, which creates strong contrast. Its triadic palette includes #249227 and #272492.
- HEX: #922724
- RGB: 146, 39, 36
- HSL: 1.64°, 75.34%, 57.25%
- Mood: Energetic, Romantic
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #248F92
- Triadic colors: #249227, #272492
Live Components
Color Palettes
Vivid Auburn #922724 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
Vivid Auburn #922724 pairs with #248F92 as its complementary color, and #249227 and #272492 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #922724;
}
/* Text */
.element {
color: #922724;
}
/* Border */
.element {
border: 1px solid #922724;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#922724,
#40E0E4
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#922724,
#40E0E4
);
}
// SCSS variable
$vivid-auburn: #922724;
// With RGB channels (useful for rgba() usage)
$vivid-auburn-r: 146;
$vivid-auburn-g: 39;
$vivid-auburn-b: 36;
// Usage
.element {
background-color: $vivid-auburn;
color: rgba($vivid-auburn-r, $vivid-auburn-g, $vivid-auburn-b, 0.8);
}