Violet (RYB)

HEX: #8601AF | Modern Palette

On White
7.96:1
PASS
On Black
2.64:1
FAIL

Color Specifications

HEX
#8601AF
RGB
134, 1, 175
HSL
285°, 99% ,68%
CMYK
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

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

Color Characteristics

Mood
Bold Playful
Style
Vivid Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #4B4BAE
Protanopia #2D2DAF
Tritanopia #764242
Achromatopsia #515151

Frequently Asked Questions

Violet (RYB) (#8601AF) is a color with RGB(134, 1, 175) and HSL(285.86°, 99.43%, 68.63%).

#8601AF pairs strongly with #2AAF01 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#8601AF is suitable for Text, Button, Accent and works well with Vivid, Neon styles.

#8601AF is commonly associated with Bold, Playful.

The name Violet (RYB) is linked to violette from French, meaning violet flower.

Name, History & Etymology

Origin Word violette
Meaning violet flower
Language French
First Recorded Use Late Middle English

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.

Similar Named Colors

French Violet #8806CE ΔE 4.48
Grape #6F2DA8 ΔE 4.97
Purple (Munsell) #9F00C5 ΔE 5.28
Dark Violet #9400D3 ΔE 5.46

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