French Violet

HEX: #8806CE | Modern Palette

On White
7.08:1
PASS
On Black
2.96:1
FAIL

Color Specifications

HEX
#8806CE
RGB
136, 6, 206
HSL
279°, 97% ,80%
CMYK
33.98, 97.09, 0, 19.22

About French Violet

French Violet (#8806CE) is a color with RGB(136, 6, 206) and HSL(279°, 97.09%, 80.78%). It is commonly associated with Playful moods. In design, it fits Neon styles and is suitable for Text, Button, Background. Its complementary color is #4CCE06, which creates strong contrast. Its triadic palette includes #CE8806 and #06CE88.

  • HEX: #8806CE
  • RGB: 136, 6, 206
  • HSL: 279°, 97.09%, 80.78%
  • Mood: Playful
  • Style: Neon
  • Use case: Text, Button, Background
  • Complementary color: #4CCE06
  • Triadic colors: #CE8806, #06CE88

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

Color Characteristics

Mood
Playful
Style
Neon

Accessibility Simulation

Deuteranopia #4C4CCD
Protanopia #2F2FCE
Tritanopia #715050
Achromatopsia #585858

Frequently Asked Questions

French Violet (#8806CE) is a color with RGB(136, 6, 206) and HSL(279°, 97.09%, 80.78%).

#8806CE pairs strongly with #4CCE06 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#8806CE is suitable for Text, Button, Background and works well with Neon styles.

#8806CE is commonly associated with Playful.

Similar Named Colors

Dark Violet #9400D3 ΔE 2.07
Purple (Munsell) #9F00C5 ΔE 4.42
Violet (RYB) #8601AF ΔE 4.48
Blue Violet #8A2BE2 ΔE 4.69

Code Snippets

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

/* Text */
.element {
    color: #8806CE;
}

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #8806CE,
        #C0FE9E
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #8806CE,
        #C0FE9E
    );
}

// SCSS variable
$french-violet: #8806CE;

// With RGB channels (useful for rgba() usage)
$french-violet-r: 136;
$french-violet-g: 6;
$french-violet-b: 206;

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