Vivid Raspberry

HEX: #FF006C | Modern Palette

On White
3.84:1
FAIL
On Black
5.47:1
PASS

Color Specifications

HEX
#FF006C
RGB
255, 0, 108
HSL
334°, 100% ,100%
CMYK
0, 100, 57.65, 0

About Vivid Raspberry

Vivid Raspberry (#FF006C) is a color with RGB(255, 0, 108) and HSL(334.59°, 100%, 100%). It is commonly associated with Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Background. Its complementary color is #00FF93, which creates strong contrast. Its triadic palette includes #6CFF00 and #006CFF.

  • HEX: #FF006C
  • RGB: 255, 0, 108
  • HSL: 334.59°, 100%, 100%
  • Mood: Playful
  • Style: Neon, Warm
  • Use case: Text, Button, Background
  • Complementary color: #00FF93
  • Triadic colors: #6CFF00, #006CFF

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

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #939364
Protanopia #5D5D6E
Tritanopia #FD2525
Achromatopsia #828282

Frequently Asked Questions

Vivid Raspberry (#FF006C) is a color with RGB(255, 0, 108) and HSL(334.59°, 100%, 100%).

#FF006C pairs strongly with #00FF93 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#FF006C is commonly associated with Playful.

Similar Named Colors

Rose #FF007F ΔE 4.33
Razzmatazz #E3256B ΔE 5.03
Paradise Pink #E63E62 ΔE 5.08
Cerise #DE3163 ΔE 5.43

Code Snippets

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

/* Text */
.element {
    color: #FF006C;
}

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FF006C,
        #FFFFFF
    );
}

// SCSS variable
$vivid-raspberry: #FF006C;

// With RGB channels (useful for rgba() usage)
$vivid-raspberry-r: 255;
$vivid-raspberry-g: 0;
$vivid-raspberry-b: 108;

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