English Violet
HEX: #563C5C | Modern Palette
Color Specifications
#563C5C
86, 60, 92
288°, 34% ,36%
6.52, 34.78, 0, 63.92
About English Violet
English Violet (#563C5C) is a color with RGB(86, 60, 92) and HSL(288.75°, 34.78%, 36.08%). In design, it fits Muted styles and is suitable for Text, Print. Its complementary color is #425C3C, which creates strong contrast. Its triadic palette includes #5C563C and #3C5C56. The name comes from English Violet (English).
- HEX: #563C5C
- RGB: 86, 60, 92
- HSL: 288.75°, 34.78%, 36.08%
- Style: Muted
- Use case: Text, Print
- Complementary color: #425C3C
- Triadic colors: #5C563C, #3C5C56
- The name comes from English Violet (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 #563C5C from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color 'violet' as a general term has ancient roots, referring to the color of the violet flower. The addition of 'English' specifies a particular nuance of violet, often implying a slightly muted, deep, or dusty purple, characteristic of the sweet violet flower (Viola odorata) which is native to Europe and Asia but widely naturalized and cultivated in England. Color names often evolve to be more descriptive as the need for precise communication about colors increases, especially in industries like textiles, paints, and cosmetics. The hex code #563c5c represents a deep, somewhat desaturated purple, aligning with this description.
First Recorded Use
The specific color name 'English Violet' likely gained traction as color standardization and naming became more prevalent in art, fashion, and industry during the late 19th and early 20th centuries. The flower itself has been known and cultivated for centuries.
Cultural Associations
Violets have long been associated with modesty, humility, and faithfulness. In Victorian floriography (the language of flowers), the violet often symbolized these virtues. The color violet itself is often linked to royalty, spirituality, and mystery. 'English Violet' specifically might evoke a sense of traditional English gardens, classic elegance, or a slightly melancholic beauty.
Code Snippets
/* Background */
.element {
background-color: #563C5C;
}
/* Text */
.element {
color: #563C5C;
}
/* Border */
.element {
border: 1px solid #563C5C;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#563C5C,
#487C3C
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#563C5C,
#487C3C
);
}
// SCSS variable
$english-violet: #563C5C;
// With RGB channels (useful for rgba() usage)
$english-violet-r: 86;
$english-violet-g: 60;
$english-violet-b: 92;
// Usage
.element {
background-color: $english-violet;
color: rgba($english-violet-r, $english-violet-g, $english-violet-b, 0.8);
}