Purple Heart
HEX: #69359C | Modern Palette
Color Specifications
#69359C
105, 53, 156
270°, 66% ,61%
32.69, 66.03, 0, 38.82
About Purple Heart
Purple Heart (#69359C) is a color with RGB(105, 53, 156) and HSL(270.29°, 66.03%, 61.18%). It is commonly associated with Playful, Romantic moods. In design, it is suitable for Text, Button, Accent. Its complementary color is #689C35, which creates strong contrast. Its triadic palette includes #9C6935 and #359C69. The name comes from Purple Heart (English).
- HEX: #69359C
- RGB: 105, 53, 156
- HSL: 270.29°, 66.03%, 61.18%
- Mood: Playful, Romantic
- Use case: Text, Button, Accent
- Complementary color: #689C35
- Triadic colors: #9C6935, #359C69
- The name comes from Purple Heart (English).
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 #69359C from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The original 'Badge of Military Merit' was established by George Washington on August 7, 1782, during the Revolutionary War. It was intended to recognize 'any singularly meritorious action' and was a purple, heart-shaped piece of cloth or silk, edged with narrow lace or binding. Only three known soldiers received it. The award fell into disuse after the Revolutionary War. It was revived on February 22, 1932, on Washington's 200th birthday, by General Douglas MacArthur, then Chief of Staff of the U.S. Army. The modern Purple Heart is awarded to members of the U.S. armed forces who have been wounded or killed in action against an enemy of the United States, or as a result of an act of any such enemy or opposing armed forces. It is the oldest military award still given to U.S. military members.
First Recorded Use
August 7, 1782
Cultural Associations
The Purple Heart is a highly respected and somber award, symbolizing sacrifice and injury in service to the nation. Recipients are often referred to as 'Purple Heart veterans.' There are organizations dedicated to supporting Purple Heart recipients and preserving their legacy. The award carries significant emotional weight and is a powerful reminder of the human cost of conflict. The color purple has historically been associated with royalty and honor, which may have influenced Washington's original design.
Code Snippets
/* Background */
.element {
background-color: #69359C;
}
/* Text */
.element {
color: #69359C;
}
/* Border */
.element {
border: 1px solid #69359C;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#69359C,
#9BDD5B
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#69359C,
#9BDD5B
);
}
// SCSS variable
$purple-heart: #69359C;
// With RGB channels (useful for rgba() usage)
$purple-heart-r: 105;
$purple-heart-g: 53;
$purple-heart-b: 156;
// Usage
.element {
background-color: $purple-heart;
color: rgba($purple-heart-r, $purple-heart-g, $purple-heart-b, 0.8);
}