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
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 #922724 from deepest shade to lightest tint.
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);
}