Spanish Violet

HEX: #4C2882 | Modern Palette

On White
10.86:1
PASS
On Black
1.93:1
FAIL

Color Specifications

HEX
#4C2882
RGB
76, 40, 130
HSL
264°, 69% ,50%
CMYK
41.54, 69.23, 0, 49.02

About Spanish Violet

Spanish Violet (#4C2882) is a color with RGB(76, 40, 130) and HSL(264°, 69.23%, 50.98%). It is commonly associated with Romantic moods. In design, it is suitable for Text, Button, Accent. Its complementary color is #5E8228, which creates strong contrast. Its triadic palette includes #824C28 and #28824C.

  • HEX: #4C2882
  • RGB: 76, 40, 130
  • HSL: 264°, 69.23%, 50.98%
  • Mood: Romantic
  • Use case: Text, Button, Accent
  • Complementary color: #5E8228
  • Triadic colors: #824C28, #28824C

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

Color Characteristics

Mood
Romantic
Style
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #353582
Protanopia #2E2E82
Tritanopia #3C3D3D
Achromatopsia #3D3D3D

Frequently Asked Questions

Spanish Violet (#4C2882) is a color with RGB(76, 40, 130) and HSL(264°, 69.23%, 50.98%).

#4C2882 pairs strongly with #5E8228 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#4C2882 is suitable for Text, Button, Accent.

#4C2882 is commonly associated with Romantic.

Similar Named Colors

Regalia #522D80 ΔE 1.88
Blue-magenta Violet #553592 ΔE 3.98
Rebecca Purple #663399 ΔE 5.88
Indigo #4B0082 ΔE 6.08

Code Snippets

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

/* Text */
.element {
    color: #4C2882;
}

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #4C2882,
        #93D92B
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #4C2882,
        #93D92B
    );
}

// SCSS variable
$spanish-violet: #4C2882;

// With RGB channels (useful for rgba() usage)
$spanish-violet-r: 76;
$spanish-violet-g: 40;
$spanish-violet-b: 130;

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