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
Blast-off Bronze #A57164 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
Blast-off Bronze #A57164 pairs with #6498A5 as its complementary color, and #64A571 and #7164A5 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: #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);
}