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
Vivid Raspberry #FF006C 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 Raspberry #FF006C pairs with #00FF93 as its complementary color, and #6CFF00 and #006CFF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}