Mountain Meadow

HEX: #30BA8F | Modern Palette

On White
2.46:1
FAIL
On Black
8.55:1
PASS

Color Specifications

HEX
#30BA8F
RGB
48, 186, 143
HSL
161°, 74% ,72%
CMYK
74.19, 0, 23.12, 27.06

About Mountain Meadow

Mountain Meadow (#30BA8F) is a color with RGB(48, 186, 143) and HSL(161.3°, 74.19%, 72.94%). It is commonly associated with Playful moods. In design, it fits Cool styles and is suitable for Text, Button, Accent. Its complementary color is #BA305B, which creates strong contrast. Its triadic palette includes #8F30BA and #BA8F30. The name comes from Mountain Meadow (English).

  • HEX: #30BA8F
  • RGB: 48, 186, 143
  • HSL: 161.3°, 74.19%, 72.94%
  • Mood: Playful
  • Style: Cool
  • Use case: Text, Button, Accent
  • Complementary color: #BA305B
  • Triadic colors: #8F30BA, #BA8F30
  • The name comes from Mountain Meadow (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 #30BA8F from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style
Cool
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #A1A191
Protanopia #B1B18F
Tritanopia #44B5B5
Achromatopsia #A5A5A5

Frequently Asked Questions

Mountain Meadow (#30BA8F) is a color with RGB(48, 186, 143) and HSL(161.3°, 74.19%, 72.94%).

#30BA8F pairs strongly with #BA305B as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#30BA8F is suitable for Text, Button, Accent and works well with Cool styles.

#30BA8F is commonly associated with Playful.

The name Mountain Meadow is linked to Mountain Meadow from English, meaning A meadow located in a mountainous region..

Name, History & Etymology

Origin Word Mountain Meadow
Meaning A meadow located in a mountainous region.
Language English
First Recorded Use 18th Century

History

The term 'mountain meadow' is a descriptive compound noun. 'Mountain' derives from Old French 'montaigne' and ultimately Latin 'montanus' (of a mountain) and 'mons' (mountain). 'Meadow' comes from Old English 'mæd' or 'mædwe', related to 'mow'. The combination describes a specific type of ecosystem often found at higher elevations, characterized by grasses, wildflowers, and other herbaceous plants, typically surrounded by forests or rocky terrain. These areas are often important for grazing animals and as sources of water.

First Recorded Use

The exact first use is difficult to pinpoint, but the combination of 'mountain' and 'meadow' as descriptive terms for a geographical feature would have emerged as English speakers explored and described such landscapes. Early geological and botanical surveys from the 18th and 19th centuries frequently use such compound terms.

Cultural Associations

Mountain meadows hold significant cultural value in many societies. They are often seen as places of natural beauty, tranquility, and biodiversity. In some cultures, they are associated with pastoral life, traditional farming, or spiritual retreats. They are also frequently depicted in art, literature, and photography as iconic landscapes. The 'Mountain Meadows Massacre' in 1857 in Utah is a specific historical event that gives the term a somber connotation in American history, though the term itself is purely descriptive of the location.

Similar Named Colors

Mint #3EB489 ΔE 1.91
Jungle Green #29AB87 ΔE 4.44
Caribbean Green #00CC99 ΔE 4.83
Green (Crayola) #1CAC78 ΔE 5.00

Code Snippets

/* Background */
.element {
    background-color: #30BA8F;
}

/* Text */
.element {
    color: #30BA8F;
}

/* Border */
.element {
    border: 1px solid #30BA8F;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #30BA8F,
        #ED87A7
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #30BA8F,
        #ED87A7
    );
}

// SCSS variable
$mountain-meadow: #30BA8F;

// With RGB channels (useful for rgba() usage)
$mountain-meadow-r: 48;
$mountain-meadow-g: 186;
$mountain-meadow-b: 143;

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