Violet (RYB)
HEX: #8601AF | Modern Palette
Color Specifications
#8601AF
134, 1, 175
285°, 99% ,68%
23.43, 99.43, 0, 31.37
About Violet (RYB)
Violet (RYB) (#8601AF) is a color with RGB(134, 1, 175) and HSL(285.86°, 99.43%, 68.63%). It is commonly associated with Bold, Playful moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #2AAF01, which creates strong contrast. Its triadic palette includes #AF8601 and #01AF86. The name comes from violette (French).
- HEX: #8601AF
- RGB: 134, 1, 175
- HSL: 285.86°, 99.43%, 68.63%
- Mood: Bold, Playful
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #2AAF01
- Triadic colors: #AF8601, #01AF86
- The name comes from violette (French).
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 #8601AF from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color name 'violet' in English derives from the Old French 'violette', which is a diminutive of 'viole' (violet flower), itself from Latin 'viola'. The flower has been known and admired since antiquity. As a color term, it has been used to describe the hue of the violet flower. In the context of the visible spectrum, violet is the color at the short-wavelength end, between blue and ultraviolet. Isaac Newton identified violet as one of the seven colors of the spectrum in the 17th century. In traditional RYB (red, yellow, blue) color theory, violet is often considered a secondary color, though more precisely it's a tertiary color (blue-purple) or a spectral color distinct from purple (which is a mix of red and blue). The specific shade '#8601af' is a deep, rich violet.
First Recorded Use
c. 1374
Cultural Associations
Violet has a rich array of cultural associations. It is often linked with royalty, nobility, and luxury, especially in historical contexts where purple dyes were rare and expensive. It can also symbolize spirituality, mysticism, and magic. In some cultures, it represents mourning or remembrance. It is associated with creativity, wisdom, and dignity. The violet flower itself often symbolizes modesty and faithfulness. In art, violet has been used to evoke a sense of melancholy, mystery, or dreaminess. It is also the color of the seventh (crown) chakra in some spiritual traditions.
Code Snippets
/* Background */
.element {
background-color: #8601AF;
}
/* Text */
.element {
color: #8601AF;
}
/* Border */
.element {
border: 1px solid #8601AF;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#8601AF,
#85FF5F
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#8601AF,
#85FF5F
);
}
// SCSS variable
$violet-(ryb): #8601AF;
// With RGB channels (useful for rgba() usage)
$violet-(ryb)-r: 134;
$violet-(ryb)-g: 1;
$violet-(ryb)-b: 175;
// Usage
.element {
background-color: $violet-(ryb);
color: rgba($violet-(ryb)-r, $violet-(ryb)-g, $violet-(ryb)-b, 0.8);
}