Amazon

HEX: #3B7A57 | Modern Palette

On White
5.11:1
PASS
On Black
4.11:1
FAIL

Color Specifications

HEX
#3B7A57
RGB
59, 122, 87
HSL
146°, 51% ,47%
CMYK
51.64, 0, 28.69, 52.16

About Amazon

Amazon (#3B7A57) is a color with RGB(59, 122, 87) and HSL(146.67°, 51.64%, 47.84%). It is commonly associated with Earthy moods. In design, it fits Cool styles and is suitable for Text, Button, Logo. Its complementary color is #7A3B5E, which creates strong contrast. Its triadic palette includes #573B7A and #7A573B. The name comes from Amazonas (Spanish, Portuguese).

  • HEX: #3B7A57
  • RGB: 59, 122, 87
  • HSL: 146.67°, 51.64%, 47.84%
  • Mood: Earthy
  • Style: Cool
  • Use case: Text, Button, Logo
  • Complementary color: #7A3B5E
  • Triadic colors: #573B7A, #7A573B
  • The name comes from Amazonas (Spanish, Portuguese).

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 #3B7A57 from deepest shade to lightest tint.

Color Characteristics

Mood
Earthy
Style
Cool
Use case
Text Button Logo

Accessibility Simulation

Deuteranopia #6C6C58
Protanopia #757557
Tritanopia #437676
Achromatopsia #6E6E6E

Frequently Asked Questions

Amazon (#3B7A57) is a color with RGB(59, 122, 87) and HSL(146.67°, 51.64%, 47.84%).

#3B7A57 pairs strongly with #7A3B5E as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#3B7A57 is suitable for Text, Button, Logo and works well with Cool styles.

#3B7A57 is commonly associated with Earthy.

The name Amazon is linked to Amazonas from Spanish, Portuguese, meaning Amazons (mythological female warriors).

Name, History & Etymology

Origin Word Amazonas
Meaning Amazons (mythological female warriors)
Language Spanish, Portuguese
First Recorded Use 16th Century

History

The name 'Amazon' has a rich history, primarily associated with the Amazon River and the vast rainforest surrounding it. The mythological Amazons were a race of female warriors in Greek mythology, often depicted as living in the region of Pontus (modern-day Turkey) or Scythia. Orellana's account, though debated in its literal interpretation of female warriors, led to the river being named 'Rio Amazonas'. Over centuries, the name extended to the entire basin, the rainforest, and the indigenous cultures within it. In modern times, the name gained further global prominence with the founding of Amazon.com by Jeff Bezos in 1994, who chose the name to evoke the vastness and exotic nature of the river, symbolizing the immense selection of products he aimed to offer.

First Recorded Use

The name 'Amazon' was first applied to the Amazon River by Spanish explorer Francisco de Orellana in 1542. He claimed his expedition was attacked by fierce female warriors, reminding him of the Amazons of Greek mythology.

Cultural Associations

The Amazon region is a global biodiversity hotspot, crucial for climate regulation, and home to numerous indigenous tribes with unique cultures and languages. The mythological Amazons have inspired countless works of art, literature, and modern popular culture, often symbolizing female strength and independence. The company Amazon.com has become a dominant force in e-commerce, cloud computing (AWS), and digital entertainment, profoundly impacting global commerce and technology.

Similar Named Colors

Spanish Viridian #007F5C ΔE 4.69
Dark Spring Green #177245 ΔE 5.26
Viridian #40826D ΔE 5.93

Code Snippets

/* Background */
.element {
    background-color: #3B7A57;
}

/* Text */
.element {
    color: #3B7A57;
}

/* Border */
.element {
    border: 1px solid #3B7A57;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #3B7A57,
        #B93B81
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #3B7A57,
        #B93B81
    );
}

// SCSS variable
$amazon: #3B7A57;

// With RGB channels (useful for rgba() usage)
$amazon-r: 59;
$amazon-g: 122;
$amazon-b: 87;

// Usage
.element {
    background-color: $amazon;
    color: rgba($amazon-r, $amazon-g, $amazon-b, 0.8);
}