Veronica

HEX: #A020F0 | Modern Palette

On White
5.30:1
PASS
On Black
3.96:1
FAIL

Color Specifications

HEX
#A020F0
RGB
160, 32, 240
HSL
276°, 87% ,53%
CMYK
33, 87, 0, 6

About Veronica

Veronica (#A020F0) is a color with RGB(160, 32, 240) and HSL(276.9°, 87.4%, 53.3%). It is commonly associated with Bold, Romantic moods. In design, it fits Vivid styles and is suitable for Text, Button, Accent. Its complementary color is #70F020, which creates strong contrast. Its triadic palette includes #F0A020 and #20F0A0. The name comes from Veronica (Latin).

  • HEX: #A020F0
  • RGB: 160, 32, 240
  • HSL: 276.9°, 87.4%, 53.3%
  • Mood: Bold, Romantic
  • Style: Vivid
  • Use case: Text, Button, Accent
  • Complementary color: #70F020
  • Triadic colors: #F0A020, #20F0A0
  • The name comes from Veronica (Latin).

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

Color Characteristics

Mood
Bold Romantic
Style
Vivid
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #5E5EEF
Protanopia #4040F0
Tritanopia #866262
Achromatopsia #6B6B6B

Frequently Asked Questions

Veronica (#A020F0) is a color with RGB(160, 32, 240) and HSL(276.9°, 87.4%, 53.3%).

#A020F0 pairs strongly with #70F020 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#A020F0 is suitable for Text, Button, Accent and works well with Vivid styles.

#A020F0 is commonly associated with Bold, Romantic.

The name Veronica is linked to Veronica from Latin, meaning She who brings victory; true image.

Name, History & Etymology

Origin Word Veronica
Meaning She who brings victory; true image
Language Latin
First Recorded Use Early Christian Era

History

The name Veronica has a complex and somewhat debated origin. It is widely believed to be a Latinization of the Greek name Pherenike (or Berenice), meaning 'she who brings victory'. This Greek name was borne by several Hellenistic queens. However, the name gained significant prominence and a secondary meaning through Christian tradition. According to legend, Saint Veronica was a woman who offered a cloth to Jesus to wipe his face on the way to his crucifixion. The image of his face was miraculously imprinted on the cloth, which became known as the 'Veil of Veronica' or 'vera icon' (Latin for 'true image'). This folk etymology, linking the name to 'vera icon', became very popular and influenced the perception and use of the name, especially in medieval Europe. The name has been consistently used in Christian countries since then.

First Recorded Use

Likely 1st-4th century AD

Cultural Associations

Veronica is a name with strong religious connotations, particularly in Catholicism, due to the legend of Saint Veronica and her veil. It is often associated with compassion, truth, and the sacred. The name is also popular in various European and Latin American cultures. In modern times, it has maintained a classic yet approachable feel. It is also the name of a genus of flowering plants (speedwell), adding a botanical association.

Similar Named Colors

Vivid Violet #9F00FF ΔE 1.95
Blue Violet #8A2BE2 ΔE 3.74
Electric Violet #8F00FF ΔE 3.78
Vivid Mulberry #B80CE3 ΔE 4.39

Code Snippets

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

/* Text */
.element {
    color: #A020F0;
}

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #A020F0,
        #70F020
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #A020F0,
        #70F020
    );
}

// SCSS variable
$veronica: #A020F0;

// With RGB channels (useful for rgba() usage)
$veronica-r: 160;
$veronica-g: 32;
$veronica-b: 240;

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