Tropical Rain Forest

HEX: #00755E | Modern Palette

On White
5.67:1
PASS
On Black
3.71:1
FAIL

Color Specifications

HEX
#00755E
RGB
0, 117, 94
HSL
168°, 100% ,45%
CMYK
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

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

Color Characteristics

Mood
Bold
Style
Vivid Cool
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #646460
Protanopia #6F6F5E
Tritanopia #177272
Achromatopsia #676767

Frequently Asked Questions

Tropical Rain Forest (#00755E) is a color with RGB(0, 117, 94) and HSL(168.21°, 100%, 45.88%).

#00755E pairs strongly with #750017 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#00755E is suitable for Text, Button, Accent and works well with Vivid, Cool styles.

#00755E is commonly associated with Bold.

The name Tropical Rain Forest is linked to Tropical Rain Forest from English, meaning A forest found in tropical areas with high annual rainfall and no dry season. Characterized by high biodiversity and dense canopy..

Name, History & Etymology

Origin Word Tropical Rain Forest
Meaning A forest found in tropical areas with high annual rainfall and no dry season. Characterized by high biodiversity and dense canopy.
Language English
First Recorded Use Late 19th - Early 20th Century

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.

Similar Named Colors

Teal Green #006D5B ΔE 3.11
Generic Viridian #007F66 ΔE 3.53
Bottle Green #006A4E ΔE 4.41

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