Purple Mountain's Majesty
HEX: #9D81BA | Modern Palette
Color Specifications
#9D81BA
157, 129, 186
269°, 30% ,72%
15.59, 30.65, 0, 27.06
About Purple Mountain's Majesty
Purple Mountain's Majesty (#9D81BA) is a color with RGB(157, 129, 186) and HSL(269.47°, 30.65%, 72.94%). In design, it fits Pastel styles and is suitable for Text, Print. Its complementary color is #9EBA81, which creates strong contrast. Its triadic palette includes #BA9D81 and #81BA9D. The name comes from Purple Mountain's Majesty (English).
- HEX: #9D81BA
- RGB: 157, 129, 186
- HSL: 269.47°, 30.65%, 72.94%
- Style: Pastel
- Use case: Text, Print
- Complementary color: #9EBA81
- Triadic colors: #BA9D81, #81BA9D
- The name comes from Purple Mountain's Majesty (English).
Live Components
Color Palettes
Purple Mountain's Majesty #9D81BA is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Purple Mountain's Majesty #9D81BA pairs with #9EBA81 as its complementary color, and #BA9D81 and #81BA9D in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The phrase 'purple mountain majesties' originates from the patriotic American song 'America the Beautiful,' with lyrics written by Katharine Lee Bates in 1895. Bates was inspired by the view from Pikes Peak in Colorado. The phrase evokes the grandeur and natural beauty of the American landscape, specifically the Rocky Mountains. The color purple, in this context, can be attributed to several factors: the scattering of light at sunrise or sunset (Rayleigh scattering), which makes distant mountains appear bluish-purple; the presence of certain minerals in the rock; or simply an artistic interpretation of a deep, rich hue that conveys majesty and depth.
First Recorded Use
1895
Cultural Associations
This phrase is deeply embedded in American culture due to its prominence in 'America the Beautiful,' which is often considered an unofficial national anthem. It symbolizes the vastness, beauty, and spiritual significance of the American wilderness. The imagery has been used in countless forms of media, art, and literature to represent national pride, natural conservation, and the pioneering spirit. It conjures a sense of wonder and reverence for the natural world.
Code Snippets
/* Background */
.element {
background-color: #9D81BA;
}
/* Text */
.element {
color: #9D81BA;
}
/* Border */
.element {
border: 1px solid #9D81BA;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#9D81BA,
#BACFA5
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#9D81BA,
#BACFA5
);
}
// SCSS variable
$purple-mountain's-majesty: #9D81BA;
// With RGB channels (useful for rgba() usage)
$purple-mountain's-majesty-r: 157;
$purple-mountain's-majesty-g: 129;
$purple-mountain's-majesty-b: 186;
// Usage
.element {
background-color: $purple-mountain's-majesty;
color: rgba($purple-mountain's-majesty-r, $purple-mountain's-majesty-g, $purple-mountain's-majesty-b, 0.8);
}