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
Vivid Orchid #CC00FF is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Vivid Orchid #CC00FF pairs with #33FF00 as its complementary color, and Tangerine Yellow (#FFCC00) and #00FFCC in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Triadic
Three colors equally spaced 120° apart — bold, balanced, and visually rich.
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);
}