Xanadu

HEX: #738678 | Modern Palette

On White
3.88:1
FAIL
On Black
5.41:1
PASS

Color Specifications

HEX
#738678
RGB
115, 134, 120
HSL
135°, 14% ,52%
CMYK
14.18, 0, 10.45, 47.45

About Xanadu

Xanadu (#738678) is a color with RGB(115, 134, 120) and HSL(135.79°, 14.18%, 52.55%). It is commonly associated with Calm, Earthy moods. In design, it fits Muted, Cool styles and is suitable for Text, Background, Border. Its complementary color is #867381, which creates strong contrast. Its triadic palette includes #787386 and #867873. The name comes from Xanadu (English).

  • HEX: #738678
  • RGB: 115, 134, 120
  • HSL: 135.79°, 14.18%, 52.55%
  • Mood: Calm, Earthy
  • Style: Muted, Cool
  • Use case: Text, Background, Border
  • Complementary color: #867381
  • Triadic colors: #787386, #867873
  • The name comes from Xanadu (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 #738678 from deepest shade to lightest tint.

Color Characteristics

Mood
Calm Earthy
Style
Muted Cool

Accessibility Simulation

Deuteranopia #818178
Protanopia #848478
Tritanopia #758484
Achromatopsia #818181

Frequently Asked Questions

Xanadu (#738678) is a color with RGB(115, 134, 120) and HSL(135.79°, 14.18%, 52.55%).

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

#738678 is suitable for Text, Background, Border and works well with Muted, Cool styles.

#738678 is commonly associated with Calm, Earthy.

The name Xanadu is linked to Xanadu from English, meaning A mythical, idyllic, or luxurious place; a paradise..

Name, History & Etymology

Origin Word Xanadu
Meaning A mythical, idyllic, or luxurious place; a paradise.
Language English
First Recorded Use Late 18th Century

History

The word 'Xanadu' entered the English language through Samuel Taylor Coleridge's unfinished poem 'Kubla Khan', published in 1816 but written in 1797. Coleridge claimed the poem came to him in a dream after reading 'Purchas his Pilgrimage', a travelogue by Samuel Purchas, which described Kublai Khan's summer palace at Xandu (Shangdu) in Mongolia. Coleridge's poetic depiction transformed the historical location into a symbol of an exotic, magnificent, and almost fantastical paradise. The poem begins with the famous lines: 'In Xanadu did Kubla Khan / A stately pleasure-dome decree'. The actual historical site, Shangdu, was the summer capital of the Yuan Dynasty and was indeed a grand city, but Coleridge's poem imbued 'Xanadu' with a sense of the sublime and the unattainable.

First Recorded Use

1797

Cultural Associations

The term 'Xanadu' has become a common literary and cultural reference for any magnificent, idyllic, or luxurious place, often with a hint of the fantastical or unattainable. It was famously used as the name of Charles Foster Kane's opulent, but ultimately lonely, estate in Orson Welles' 1941 film 'Citizen Kane', further cementing its association with grand, isolated luxury. The word also inspired the title of the 1980 musical fantasy film 'Xanadu', starring Olivia Newton-John and Gene Kelly, which features a disco-infused soundtrack and a plot involving Greek muses. Various businesses, resorts, and fictional locations have adopted the name 'Xanadu' to evoke a sense of luxury, exoticism, or paradise.

Similar Named Colors

Smoke #738276 ΔE 2.07
Camouflage Green #78866B ΔE 5.20
AuroMetalSaurus #6E7F80 ΔE 7.76
Artichoke #8F9779 ΔE 9.48

Code Snippets

/* Background */
.element {
    background-color: #738678;
}

/* Text */
.element {
    color: #738678;
}

/* Border */
.element {
    border: 1px solid #738678;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #738678,
        #97758E
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #738678,
        #97758E
    );
}

// SCSS variable
$xanadu: #738678;

// With RGB channels (useful for rgba() usage)
$xanadu-r: 115;
$xanadu-g: 134;
$xanadu-b: 120;

// Usage
.element {
    background-color: $xanadu;
    color: rgba($xanadu-r, $xanadu-g, $xanadu-b, 0.8);
}