Vivid Orchid

HEX: #CC00FF | Modern Palette

On White
4.19:1
FAIL
On Black
5.01:1
PASS

Color Specifications

HEX
#CC00FF
RGB
204, 0, 255
HSL
288°, 100% ,100%
CMYK
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

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

Color Characteristics

Mood
Playful
Style
Neon

Accessibility Simulation

Deuteranopia #7474FE
Protanopia #4949FF
Tritanopia #B66464
Achromatopsia #7C7C7C

Frequently Asked Questions

Vivid Orchid (#CC00FF) is a color with RGB(204, 0, 255) and HSL(288°, 100%, 100%).

#CC00FF pairs strongly with #33FF00 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#CC00FF is commonly associated with Playful.

Similar Named Colors

Electric Purple #BF00FF ΔE 2.45
Psychedelic Purple #DF00FF ΔE 3.58
Vivid Mulberry #B80CE3 ΔE 5.27
Deep Magenta #CC00CC ΔE 7.07

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