Veronica
HEX: #A020F0 | Modern Palette
Color Specifications
#A020F0
160, 32, 240
276°, 87% ,53%
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
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 #A020F0 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}