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
Vivid Red #F70D1A 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 Red #F70D1A pairs with #0DF7EA as its complementary color, and #1AF70D and #0D1AF7 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}