English Violet

HEX: #563C5C | Modern Palette

On White
9.56:1
PASS
On Black
2.20:1
FAIL

Color Specifications

HEX
#563C5C
RGB
86, 60, 92
HSL
288°, 34% ,36%
CMYK
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

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 #563C5C from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Muted
Use case
Text Print

Accessibility Simulation

Deuteranopia #45455C
Protanopia #3F3F5C
Tritanopia #524141
Achromatopsia #454545

Frequently Asked Questions

English Violet (#563C5C) is a color with RGB(86, 60, 92) and HSL(288.75°, 34.78%, 36.08%).

#563C5C pairs strongly with #425C3C as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#563C5C is suitable for Text, Print and works well with Muted styles.

The name English Violet is linked to English Violet from English, meaning A shade of purple inspired by the flower Viola odorata, commonly known as the sweet violet or English violet..

Name, History & Etymology

Origin Word English Violet
Meaning A shade of purple inspired by the flower Viola odorata, commonly known as the sweet violet or English violet.
Language English
First Recorded Use Late 19th Century

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.

Similar Named Colors

Dark Byzantium #5D3954 ΔE 3.92
Japanese Violet #5B3256 ΔE 4.35
Halayà úbe #663854 ΔE 6.31
Eggplant #614051 ΔE 6.60

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);
}