Blast-off Bronze

HEX: #A57164 | Modern Palette

On White
4.08:1
FAIL
On Black
5.15:1
PASS

Color Specifications

HEX
#A57164
RGB
165, 113, 100
HSL
12°, 39% ,64%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Romantic
Style
Warm
Use case
Text Logo Print

Accessibility Simulation

Deuteranopia #838362
Protanopia #787864
Tritanopia #A66F6F
Achromatopsia #7E7E7E

Frequently Asked Questions

Blast-off Bronze (#A57164) is a color with RGB(165, 113, 100) and HSL(12°, 39.39%, 64.71%).

#A57164 pairs strongly with #6498A5 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#A57164 is suitable for Text, Logo, Print and works well with Warm styles.

#A57164 is commonly associated with Romantic.

Similar Named Colors

Copper Penny #AD6F69 ΔE 3.85
Dark Chestnut #986960 ΔE 4.03
Copper Rose #996666 ΔE 6.81
Redwood #A45A52 ΔE 8.02

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);
}