Violet Red
HEX: #F75394 | Modern Palette
Color Specifications
#F75394
247, 83, 148
336°, 91% ,64%
0, 66, 40, 3
About Violet Red
Violet Red (#F75394) is a color with RGB(247, 83, 148) and HSL(336.2°, 91.1%, 64.7%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #53F7B6, which creates strong contrast. Its triadic palette includes #94F753 and #5394F7.
- HEX: #F75394
- RGB: 247, 83, 148
- HSL: 336.2°, 91.1%, 64.7%
- Mood: Energetic, Bold
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #53F7B6
- Triadic colors: #94F753, #5394F7
Live Components
Color Palettes
Violet Red #F75394 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
Violet Red #F75394 pairs with #53F7B6 as its complementary color, and #94F753 and #5394F7 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: #F75394;
}
/* Text */
.element {
color: #F75394;
}
/* Border */
.element {
border: 1px solid #F75394;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#F75394,
#53F7B6
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#F75394,
#53F7B6
);
}
// SCSS variable
$violet-red: #F75394;
// With RGB channels (useful for rgba() usage)
$violet-red-r: 247;
$violet-red-g: 83;
$violet-red-b: 148;
// Usage
.element {
background-color: $violet-red;
color: rgba($violet-red-r, $violet-red-g, $violet-red-b, 0.8);
}