Vivid Raspberry
HEX: #FF006C | Modern Palette
Color Specifications
#FF006C
255, 0, 108
334°, 100% ,100%
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
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 #FF006C from deepest shade to lightest tint.
Frequently Asked Questions
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);
}