Amazon
HEX: #3B7A57 | Modern Palette
Color Specifications
#3B7A57
59, 122, 87
146°, 51% ,47%
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
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 #3B7A57 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}