Jasper

HEX: #D73B3E | Modern Palette

On White
4.58:1
PASS
On Black
4.58:1
PASS

Color Specifications

HEX
#D73B3E
RGB
215, 59, 62
HSL
358°, 66% ,53%
CMYK
0, 73, 71, 16

About Jasper

Jasper (#D73B3E) is a color with RGB(215, 59, 62) and HSL(358.8°, 66.1%, 53.7%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #3BD7D4, which creates strong contrast. Its triadic palette includes #3ED73B and #3B3ED7. The name comes from jaspre (Old French).

  • HEX: #D73B3E
  • RGB: 215, 59, 62
  • HSL: 358.8°, 66.1%, 53.7%
  • Mood: Romantic
  • Style: Warm
  • Use case: Text, Button, Accent
  • Complementary color: #3BD7D4
  • Triadic colors: #3ED73B, #3B3ED7
  • The name comes from jaspre (Old 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 #D73B3E from deepest shade to lightest tint.

Color Characteristics

Mood
Romantic
Style
Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #838334
Protanopia #5E5E40
Tritanopia #D73B3B
Achromatopsia #757575

Frequently Asked Questions

Jasper (#D73B3E) is a color with RGB(215, 59, 62) and HSL(358.8°, 66.1%, 53.7%).

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

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

#D73B3E is commonly associated with Romantic.

The name Jasper is linked to jaspre from Old French, meaning jasper (the gemstone).

Name, History & Etymology

Origin Word jaspre
Meaning jasper (the gemstone)
Language Old French
First Recorded Use Medieval

History

The name Jasper is derived from the Old French 'jaspre', which itself comes from the Latin 'iaspidem' and Greek 'iaspis', all referring to the gemstone jasper. The gemstone has been valued since antiquity and is mentioned in the Bible (Revelation 21:19) as one of the foundation stones of the New Jerusalem. The name's association with one of the Three Magi (often named Caspar, Gaspar, or Jasper in Western tradition) significantly boosted its popularity as a given name, particularly in the Low Countries and later in England. While 'Caspar' is more common for the Magus in some traditions, 'Jasper' became a distinct and popular variant. It saw a resurgence in the 19th century and has maintained a steady presence since.

First Recorded Use

12th century (as a given name in England)

Cultural Associations

In Christian tradition, Jasper is often associated with one of the Three Wise Men (Magi) who visited the infant Jesus, bringing gifts. This association imbues the name with connotations of wisdom, royalty, and gift-giving. The gemstone itself is known for its varied colors and patterns, often symbolizing grounding, stability, and protection. In some cultures, it's considered a stone of nurturing. The name has a sophisticated yet approachable feel.

Similar Named Colors

Alizarin Crimson #E32636 ΔE 2.40
Persian Red #CC3333 ΔE 3.39
Rusty Red #DA2C43 ΔE 3.49
Imperial Red #ED2939 ΔE 3.73

Code Snippets

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

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

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #D73B3E,
        #3BD7D4
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #D73B3E,
        #3BD7D4
    );
}

// SCSS variable
$jasper: #D73B3E;

// With RGB channels (useful for rgba() usage)
$jasper-r: 215;
$jasper-g: 59;
$jasper-b: 62;

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