Mountain Meadow
HEX: #30BA8F | Modern Palette
Color Specifications
#30BA8F
48, 186, 143
161°, 74% ,72%
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
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 #30BA8F from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}