Rich Maroon

HEX: #B03060 | Modern Palette

On White
6.11:1
PASS
On Black
3.44:1
FAIL

Color Specifications

HEX
#B03060
RGB
176, 48, 96
HSL
337°, 57% ,43%
CMYK
0, 73, 45, 31

About Rich Maroon

Rich Maroon (#B03060) is a color with RGB(176, 48, 96) and HSL(337.5°, 57.1%, 43.9%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #30B080, which creates strong contrast. Its triadic palette includes #60B030 and #3060B0. The name comes from marron (French).

  • HEX: #B03060
  • RGB: 176, 48, 96
  • HSL: 337.5°, 57.1%, 43.9%
  • Mood: Romantic
  • Style: Warm
  • Use case: Text, Button, Logo
  • Complementary color: #30B080
  • Triadic colors: #60B030, #3060B0
  • 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 #B03060 from deepest shade to lightest tint.

Color Characteristics

Mood
Romantic
Style
Warm
Use case
Text Button Logo

Accessibility Simulation

Deuteranopia #6B6B5C
Protanopia #4D4D61
Tritanopia #AE3939
Achromatopsia #626262

Frequently Asked Questions

Rich Maroon (#B03060) is a color with RGB(176, 48, 96) and HSL(337.5°, 57.1%, 43.9%).

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

#B03060 is suitable for Text, Button, Logo and works well with Warm styles.

#B03060 is commonly associated with Romantic.

The name Rich 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 color maroon is a dark reddish-brown or purplish-brown color. Its name comes from the French word 'marron', meaning 'chestnut'. The association with the color of chestnuts, particularly roasted chestnuts, is clear. Historically, dyes producing maroon shades were available, often derived from madder root or insect cochineal, though achieving consistent, 'rich' shades could be challenging before synthetic dyes. In heraldry, a similar color might be referred to as 'sanguine' (blood red) or 'murrey' (mulberry). The term 'Rich Maroon' emphasizes a deeper, more saturated, and often slightly darker version of the base maroon color, suggesting a luxurious or opulent quality.

First Recorded Use

The word 'maroon' itself, referring to the color, emerged in English in the late 16th century, derived from the French 'marron' meaning 'chestnut'. The specific descriptor 'Rich Maroon' is a more modern, descriptive term used to differentiate shades.

Cultural Associations

Maroon is often associated with maturity, seriousness, and sophistication. It is a common color in academic regalia (e.g., graduation gowns, university colors), sports team uniforms, and corporate branding, conveying a sense of tradition and strength. In fashion, 'Rich Maroon' can be seen as an elegant and versatile color, often used in autumn and winter collections. It can also evoke feelings of warmth and comfort. Due to its depth, it is sometimes associated with luxury and richness.

Similar Named Colors

Medium Ruby #AA4069 ΔE 3.16
Raspberry Rose #B3446C ΔE 4.07
Amaranth Deep Purple #AB274F ΔE 4.14
Rose Red #C21E56 ΔE 4.73

Code Snippets

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

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

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #B03060,
        #30B080
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #B03060,
        #30B080
    );
}

// SCSS variable
$rich-maroon: #B03060;

// With RGB channels (useful for rgba() usage)
$rich-maroon-r: 176;
$rich-maroon-g: 48;
$rich-maroon-b: 96;

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