Purple Mountain's Majesty

HEX: #9D81BA | Modern Palette

On White
3.34:1
FAIL
On Black
6.28:1
PASS

Color Specifications

HEX
#9D81BA
RGB
157, 129, 186
HSL
269°, 30% ,72%
CMYK
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

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

Color Characteristics

Mood
Style
Pastel
Use case
Text Print

Accessibility Simulation

Deuteranopia #8A8ABA
Protanopia #8484BA
Tritanopia #958A8A
Achromatopsia #8C8C8C

Frequently Asked Questions

Purple Mountain's Majesty (#9D81BA) is a color with RGB(157, 129, 186) and HSL(269.47°, 30.65%, 72.94%).

#9D81BA pairs strongly with #9EBA81 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#9D81BA is suitable for Text, Print and works well with Pastel styles.

The name Purple Mountain's Majesty is linked to Purple Mountain's Majesty from English, meaning A majestic and awe-inspiring sight of mountains, often appearing purple due to atmospheric conditions or the color of certain rock formations, particularly at dawn or dusk..

Name, History & Etymology

Origin Word Purple Mountain's Majesty
Meaning A majestic and awe-inspiring sight of mountains, often appearing purple due to atmospheric conditions or the color of certain rock formations, particularly at dawn or dusk.
Language English
First Recorded Use Late 19th Century

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.

Similar Named Colors

Lavender Purple #967BB6 ΔE 2.23
African Violet #B284BE ΔE 4.90
Ube #8878C3 ΔE 6.98

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