Vivid Orchid
HEX: #CC00FF | Modern Palette
Color Specifications
#CC00FF
204, 0, 255
288°, 100% ,100%
20, 100, 0, 0
About Vivid Orchid
Vivid Orchid (#CC00FF) is a color with RGB(204, 0, 255) and HSL(288°, 100%, 100%). It is commonly associated with Playful moods. In design, it fits Neon styles and is suitable for Text, Button, Background. Its complementary color is #33FF00, which creates strong contrast. Its triadic palette includes Tangerine Yellow (#FFCC00) and #00FFCC.
- HEX: #CC00FF
- RGB: 204, 0, 255
- HSL: 288°, 100%, 100%
- Mood: Playful
- Style: Neon
- Use case: Text, Button, Background
- Complementary color: #33FF00
- Triadic colors: Tangerine Yellow (#FFCC00), #00FFCC
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 #CC00FF from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#7474FE
#4949FF
#B66464
#7C7C7C
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #CC00FF;
}
/* Text */
.element {
color: #CC00FF;
}
/* Border */
.element {
border: 1px solid #CC00FF;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#CC00FF,
#FFFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#CC00FF,
#FFFFFF
);
}
// SCSS variable
$vivid-orchid: #CC00FF;
// With RGB channels (useful for rgba() usage)
$vivid-orchid-r: 204;
$vivid-orchid-g: 0;
$vivid-orchid-b: 255;
// Usage
.element {
background-color: $vivid-orchid;
color: rgba($vivid-orchid-r, $vivid-orchid-g, $vivid-orchid-b, 0.8);
}