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
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 #F75394 from deepest shade to lightest tint.
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);
}