Tropical Rain Forest
HEX: #00755E | Modern Palette
Color Specifications
#00755E
0, 117, 94
168°, 100% ,45%
100, 0, 19.66, 54.12
About Tropical Rain Forest
Tropical Rain Forest (#00755E) is a color with RGB(0, 117, 94) and HSL(168.21°, 100%, 45.88%). It is commonly associated with Bold moods. In design, it fits Vivid, Cool styles and is suitable for Text, Button, Accent. Its complementary color is #750017, which creates strong contrast. Its triadic palette includes #5E0075 and #755E00. The name comes from Tropical Rain Forest (English).
- HEX: #00755E
- RGB: 0, 117, 94
- HSL: 168.21°, 100%, 45.88%
- Mood: Bold
- Style: Vivid, Cool
- Use case: Text, Button, Accent
- Complementary color: #750017
- Triadic colors: #5E0075, #755E00
- The name comes from Tropical Rain Forest (English).
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 #00755E from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The scientific understanding and naming of 'tropical rain forests' evolved from early botanical and geographical explorations. Alexander von Humboldt's work in the Americas in the early 19th century, for instance, provided detailed descriptions of these environments. Later, botanists and ecologists like Alfred Russel Wallace and Henry Walter Bates further documented the incredible biodiversity. The term became a standard ecological classification as the science of biogeography developed, distinguishing these forests from temperate or boreal forests based on climate and biological characteristics. Conservation efforts in the latter half of the 20th century significantly popularized the term globally.
First Recorded Use
The concept and descriptive terms for such ecosystems have existed for centuries, but the specific compound term 'tropical rain forest' gained prominence in scientific and ecological literature during the late 19th and early 20th centuries as systematic study of global biomes advanced. Early naturalists and explorers described these regions, but the formal classification and naming solidified around this period.
Cultural Associations
Tropical rain forests hold significant cultural importance for indigenous communities who have lived within them for millennia, developing unique knowledge systems, languages, and spiritual beliefs tied to the forest's resources and cycles. Globally, they are often romanticized as places of exotic beauty and mystery, but also increasingly recognized as critical for global climate regulation, biodiversity, and potential sources of new medicines. They frequently feature in environmental discourse, art, and media as symbols of nature's richness and vulnerability.
Code Snippets
/* Background */
.element {
background-color: #00755E;
}
/* Text */
.element {
color: #00755E;
}
/* Border */
.element {
border: 1px solid #00755E;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#00755E,
#EA002E
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#00755E,
#EA002E
);
}
// SCSS variable
$tropical-rain-forest: #00755E;
// With RGB channels (useful for rgba() usage)
$tropical-rain-forest-r: 0;
$tropical-rain-forest-g: 117;
$tropical-rain-forest-b: 94;
// Usage
.element {
background-color: $tropical-rain-forest;
color: rgba($tropical-rain-forest-r, $tropical-rain-forest-g, $tropical-rain-forest-b, 0.8);
}