Purple Mountain Majesty
HEX: #9678B6 | Modern Palette
Color Specifications
#9678B6
150, 120, 182
269°, 34% ,71%
17.58, 34.07, 0, 28.63
About Purple Mountain Majesty
Purple Mountain Majesty (#9678B6) is a color with RGB(150, 120, 182) and HSL(269.03°, 34.07%, 71.37%). In design, it fits Pastel styles and is suitable for Text, Print. Its complementary color is #98B678, which creates strong contrast. Its triadic palette includes #B69678 and #78B696. The name comes from Purple Mountain Majesty (English).
- HEX: #9678B6
- RGB: 150, 120, 182
- HSL: 269.03°, 34.07%, 71.37%
- Style: Pastel
- Use case: Text, Print
- Complementary color: #98B678
- Triadic colors: #B69678, #78B696
- The name comes from Purple Mountain Majesty (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 #9678B6 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Katharine Lee Bates, an English professor at Wellesley College, was inspired to write 'America the Beautiful' after a trip to Colorado in 1893. The view from Pikes Peak, with its expansive landscape and the Rocky Mountains, particularly at sunset, is often cited as the direct inspiration for the line 'For purple mountain majesties above the fruited plain!' The poem was first published in 1895 in a church periodical and gained popularity over the following decades, eventually becoming one of America's most beloved patriotic anthems. The phrase itself has become synonymous with the natural beauty of the American West.
First Recorded Use
The phrase 'purple mountain majesties' first appeared in Katharine Lee Bates' poem 'America the Beautiful,' written in 1893. The poem was later set to music, becoming a well-known patriotic song.
Cultural Associations
The phrase 'purple mountain majesties' is deeply embedded in American culture, primarily through the song 'America the Beautiful.' It evokes images of vast, untouched wilderness, national parks, and the pioneering spirit. It's often used in contexts celebrating American natural beauty, patriotism, and national identity. The 'purple' refers to the hue mountains take on, especially at a distance or during certain lighting conditions (like twilight), while 'majesty' conveys their imposing and awe-inspiring scale. The phrase has been referenced in countless speeches, advertisements, and artistic works to symbolize the grandeur of the American landscape.
Code Snippets
/* Background */
.element {
background-color: #9678B6;
}
/* Text */
.element {
color: #9678B6;
}
/* Border */
.element {
border: 1px solid #9678B6;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#9678B6,
#B7CF9D
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#9678B6,
#B7CF9D
);
}
// SCSS variable
$purple-mountain-majesty: #9678B6;
// With RGB channels (useful for rgba() usage)
$purple-mountain-majesty-r: 150;
$purple-mountain-majesty-g: 120;
$purple-mountain-majesty-b: 182;
// Usage
.element {
background-color: $purple-mountain-majesty;
color: rgba($purple-mountain-majesty-r, $purple-mountain-majesty-g, $purple-mountain-majesty-b, 0.8);
}