Maya Blue

HEX: #73C2FB | Modern Palette

On White
1.94:1
FAIL
On Black
10.84:1
PASS

Color Specifications

HEX
#73C2FB
RGB
115, 194, 251
HSL
205°, 54% ,98%
CMYK
54.18, 22.71, 0, 1.57

About Maya Blue

Maya Blue (#73C2FB) is a color with RGB(115, 194, 251) and HSL(205.15°, 54.18%, 98.43%). In design, it fits Cool styles and is suitable for Text, Button, Background. Its complementary color is #FBAC73, which creates strong contrast. Its triadic palette includes #FB73C2 and #C2FB73. The name comes from tlaquimilolli (for pigment bundles), or specific names for the plant/clay components (Nahuatl (likely)).

  • HEX: #73C2FB
  • RGB: 115, 194, 251
  • HSL: 205.15°, 54.18%, 98.43%
  • Style: Cool
  • Use case: Text, Button, Background
  • Complementary color: #FBAC73
  • Triadic colors: #FB73C2, #C2FB73
  • The name comes from tlaquimilolli (for pigment bundles), or specific names for the plant/clay components (Nahuatl (likely)).

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

Color Characteristics

Mood
Style
Cool

Accessibility Simulation

Deuteranopia #B0B0FC
Protanopia #BBBBFB
Tritanopia #5FCACA
Achromatopsia #BABABA

Frequently Asked Questions

Maya Blue (#73C2FB) is a color with RGB(115, 194, 251) and HSL(205.15°, 54.18%, 98.43%).

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

#73C2FB is suitable for Text, Button, Background and works well with Cool styles.

The name Maya Blue is linked to tlaquimilolli (for pigment bundles), or specific names for the plant/clay components from Nahuatl (likely), meaning The exact original Nahuatl name for the prepared pigment 'Maya Blue' is not definitively known. 'Tlaquimilolli' refers to a bundle of things, which could describe how pigments were stored. The name 'Maya Blue' is a modern archaeological designation..

Name, History & Etymology

Origin Word tlaquimilolli (for pigment bundles), or specific names for the plant/clay components
Meaning The exact original Nahuatl name for the prepared pigment 'Maya Blue' is not definitively known. 'Tlaquimilolli' refers to a bundle of things, which could describe how pigments were stored. The name 'Maya Blue' is a modern archaeological designation.
Language Nahuatl (likely)
First Recorded Use Preclassic Mesoamerican period

History

Maya Blue is a unique and remarkably durable pigment developed by the Maya civilization and other Mesoamerican cultures. Its vibrant turquoise hue remained stable for centuries, even in harsh tropical environments, resisting acids, alkalis, weathering, and biodegradation. The pigment is a nanocomposite material, a complex of indigo dye (derived from the *Indigofera suffruticosa* plant) and palygorskite clay. The exact method of its creation was a lost art for centuries until modern scientific analysis revealed its components and likely production process, which involved heating the indigo and palygorskite mixture. It was widely used in murals, pottery, codices, and even for ritualistic purposes, such as painting sacrificial victims.

First Recorded Use

Around 300 AD, possibly earlier (Late Preclassic)

Cultural Associations

Maya Blue held significant cultural and religious importance. Its use in murals depicted deities, rulers, and historical events, adorning temples and palaces. Its presence on sacrificial victims, particularly during rituals involving human sacrifice, suggests a profound symbolic connection to water, fertility, and the underworld. The color itself may have been associated with rain gods, such as Chaac, and other celestial or aquatic deities. Its exceptional durability allowed Maya art and symbolism to endure for millennia, providing invaluable insights into their worldview.

Similar Named Colors

Very Light Azure #74BBFB ΔE 2.75
Aero #7CB9E8 ΔE 3.18
Light Sky Blue #87CEFA ΔE 3.99
French Sky Blue #77B5FE ΔE 5.44

Code Snippets

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

/* Text */
.element {
    color: #73C2FB;
}

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #73C2FB,
        #FDFBF9
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #73C2FB,
        #FDFBF9
    );
}

// SCSS variable
$maya-blue: #73C2FB;

// With RGB channels (useful for rgba() usage)
$maya-blue-r: 115;
$maya-blue-g: 194;
$maya-blue-b: 251;

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