Blast-off Bronze
HEX: #A57164 | Modern Palette
Color Specifications
#A57164
165, 113, 100
12°, 39% ,64%
0, 31.52, 39.39, 35.29
About Blast-off Bronze
Blast-off Bronze (#A57164) is a color with RGB(165, 113, 100) and HSL(12°, 39.39%, 64.71%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Logo, Print. Its complementary color is #6498A5, which creates strong contrast. Its triadic palette includes #64A571 and #7164A5.
- HEX: #A57164
- RGB: 165, 113, 100
- HSL: 12°, 39.39%, 64.71%
- Mood: Romantic
- Style: Warm
- Use case: Text, Logo, Print
- Complementary color: #6498A5
- Triadic colors: #64A571, #7164A5
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 #A57164 from deepest shade to lightest tint.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #A57164;
}
/* Text */
.element {
color: #A57164;
}
/* Border */
.element {
border: 1px solid #A57164;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#A57164,
#82BAC8
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#A57164,
#82BAC8
);
}
// SCSS variable
$blast-off-bronze: #A57164;
// With RGB channels (useful for rgba() usage)
$blast-off-bronze-r: 165;
$blast-off-bronze-g: 113;
$blast-off-bronze-b: 100;
// Usage
.element {
background-color: $blast-off-bronze;
color: rgba($blast-off-bronze-r, $blast-off-bronze-g, $blast-off-bronze-b, 0.8);
}