Jasper
HEX: #D73B3E | Modern Palette
Color Specifications
#D73B3E
215, 59, 62
358°, 66% ,53%
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
Color Palettes
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.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}