French Violet
HEX: #8806CE | Modern Palette
Color Specifications
#8806CE
136, 6, 206
279°, 97% ,80%
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
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 #8806CE from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#4C4CCD
#2F2FCE
#715050
#585858
Frequently Asked Questions
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);
}