Vivid Red

HEX: #F70D1A | Modern Palette

On White
4.18:1
FAIL
On Black
5.03:1
PASS

Color Specifications

HEX
#F70D1A
RGB
247, 13, 26
HSL
356°, 94% ,96%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #8F8F00
Protanopia #5B5B20
Tritanopia #F70F0F
Achromatopsia #7C7C7C

Frequently Asked Questions

Vivid Red (#F70D1A) is a color with RGB(247, 13, 26) and HSL(356.67°, 94.74%, 96.86%).

#F70D1A pairs strongly with #0DF7EA as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#F70D1A is suitable for Text, Button, Background and works well with Neon, Warm styles.

#F70D1A is commonly associated with Playful.

Similar Named Colors

Red (pigment) #ED1C24 ΔE 2.34
Ruddy #FF0028 ΔE 2.97
Lust #E62020 ΔE 3.11
Red #FF0000 ΔE 3.25

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);
}