Maroon

HEX: #800000 | Modern Palette

On White
10.95:1
PASS
On Black
1.92:1
FAIL

Color Specifications

HEX
#800000
RGB
128, 0, 0
HSL
0°, 100% ,50%
CMYK
0, 100, 100, 49.8

About Maroon

Maroon (#800000) is a color with RGB(128, 0, 0) and HSL(0°, 100%, 50.2%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is Teal (#008080), which creates strong contrast. Its triadic palette includes Office Green (#008000) and Navy Blue (#000080). The name comes from marron (French).

  • HEX: #800000
  • RGB: 128, 0, 0
  • HSL: 0°, 100%, 50.2%
  • Mood: Energetic, Bold
  • Style: Vivid, Warm
  • Use case: Text, Button, Accent
  • Complementary color: Teal (#008080)
  • Triadic colors: Office Green (#008000), Navy Blue (#000080)
  • The name comes from marron (French).

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

Color Characteristics

Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #474700
Protanopia #2A2A03
Tritanopia #800000
Achromatopsia #3C3C3C

Frequently Asked Questions

Maroon (#800000) is a color with RGB(128, 0, 0) and HSL(0°, 100%, 50.2%).

#800000 pairs strongly with Teal (#008080) as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#800000 is suitable for Text, Button, Accent and works well with Vivid, Warm styles.

#800000 is commonly associated with Energetic, Bold.

The name Maroon is linked to marron from French, meaning chestnut.

Name, History & Etymology

Origin Word marron
Meaning chestnut
Language French
First Recorded Use Late 16th Century

History

The word 'marron' in French has roots in Vulgar Latin *marrōnem, which likely came from a pre-Roman substrate language. It originally referred to the sweet chestnut. The adoption into English as a color term is a direct borrowing from French. While the color itself has existed throughout history, its specific naming as 'maroon' in English is relatively recent compared to more basic color terms like 'red' or 'brown'. It gained more widespread recognition as a distinct color name in the 18th and 19th centuries, particularly in fashion and heraldry, to describe a deep, dark red with a brownish tinge.

First Recorded Use

The color 'maroon' as a distinct term in English appears to have been adopted from French, where 'marron' refers to a chestnut. The color of a roasted chestnut is a deep reddish-brown, which aligns with the modern understanding of maroon. Early uses in English often referred to the chestnut itself before the color term became widely established.

Cultural Associations

Maroon is often associated with maturity, sophistication, and seriousness. In many cultures, it can represent passion (due to its red component) but in a more subdued or grounded way than bright red. It is a common color for academic regalia, often signifying a higher level of education or specific disciplines. In sports, maroon is a popular team color for its strong and classic appearance. It can also be found in traditional and formal wear, conveying a sense of elegance and tradition. In some contexts, it might be seen as a more conservative or traditional alternative to brighter reds.

Similar Named Colors

Deep Maroon #820000 ΔE 0.41
Barn Red #7C0A02 ΔE 1.01
Deep Red #850101 ΔE 1.01
Dark Red #8B0000 ΔE 2.25

Code Snippets

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

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

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #800000,
        #01FFFF
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #800000,
        #01FFFF
    );
}

// SCSS variable
$maroon: #800000;

// With RGB channels (useful for rgba() usage)
$maroon-r: 128;
$maroon-g: 0;
$maroon-b: 0;

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