Vivid Red
HEX: #F70D1A | Modern Palette
Color Specifications
#F70D1A
247, 13, 26
356°, 94% ,96%
0, 94.74, 89.47, 3.14
About Vivid Red
Vivid Red (#F70D1A) is a color with RGB(247, 13, 26) and HSL(356.67°, 94.74%, 96.86%). 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 #0DF7EA, which creates strong contrast. Its triadic palette includes #1AF70D and #0D1AF7.
- HEX: #F70D1A
- RGB: 247, 13, 26
- HSL: 356.67°, 94.74%, 96.86%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #0DF7EA
- Triadic colors: #1AF70D, #0D1AF7
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 #F70D1A from deepest shade to lightest tint.
Frequently Asked Questions
Similar Named Colors
Code Snippets
/* Background */
.element {
background-color: #F70D1A;
}
/* Text */
.element {
color: #F70D1A;
}
/* Border */
.element {
border: 1px solid #F70D1A;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#F70D1A,
#EFFFFE
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#F70D1A,
#EFFFFE
);
}
// SCSS variable
$vivid-red: #F70D1A;
// With RGB channels (useful for rgba() usage)
$vivid-red-r: 247;
$vivid-red-g: 13;
$vivid-red-b: 26;
// Usage
.element {
background-color: $vivid-red;
color: rgba($vivid-red-r, $vivid-red-g, $vivid-red-b, 0.8);
}