Purple Mountain Majesty

HEX: #9678B6 | Modern Palette

On White
3.71:1
FAIL
On Black
5.66:1
PASS

Color Specifications

HEX
#9678B6
RGB
150, 120, 182
HSL
269°, 34% ,71%
CMYK
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

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

Color Characteristics

Mood
Style
Pastel
Use case
Text Print

Accessibility Simulation

Deuteranopia #8282B6
Protanopia #7C7CB6
Tritanopia #8D8282
Achromatopsia #858585

Frequently Asked Questions

Purple Mountain Majesty (#9678B6) is a color with RGB(150, 120, 182) and HSL(269.03°, 34.07%, 71.37%).

#9678B6 pairs strongly with #98B678 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#9678B6 is suitable for Text, Print and works well with Pastel styles.

The name Purple Mountain Majesty is linked to Purple Mountain Majesty from English, meaning A descriptive phrase evoking the grandeur and color of mountains, particularly at dawn or dusk, often associated with the American landscape..

Name, History & Etymology

Origin Word Purple Mountain Majesty
Meaning A descriptive phrase evoking the grandeur and color of mountains, particularly at dawn or dusk, often associated with the American landscape.
Language English
First Recorded Use Late 19th Century

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.

Similar Named Colors

Lavender Purple #967BB6 ΔE 1.08
Ube #8878C3 ΔE 5.38
African Violet #B284BE ΔE 6.90

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