Vivid Red-tangelo

HEX: #DF6124 | Modern Palette

On White
3.58:1
FAIL
On Black
5.87:1
PASS

Color Specifications

HEX
#DF6124
RGB
223, 97, 36
HSL
19°, 83% ,87%
CMYK
0, 56.5, 83.86, 12.55

About Vivid Red-tangelo

Vivid Red-tangelo (#DF6124) is a color with RGB(223, 97, 36) and HSL(19.57°, 83.86%, 87.45%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #24A2DF, which creates strong contrast. Its triadic palette includes #24DF61 and #6124DF.

  • HEX: #DF6124
  • RGB: 223, 97, 36
  • HSL: 19.57°, 83.86%, 87.45%
  • Mood: Playful
  • Style: Warm
  • Use case: Text, Button, Background
  • Complementary color: #24A2DF
  • Triadic colors: #24DF61, #6124DF

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 #DF6124 from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style
Warm

Accessibility Simulation

Deuteranopia #95950D
Protanopia #787827
Tritanopia #E15C5C
Achromatopsia #878787

Frequently Asked Questions

Vivid Red-tangelo (#DF6124) is a color with RGB(223, 97, 36) and HSL(19.57°, 83.86%, 87.45%).

#DF6124 pairs strongly with #24A2DF as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#DF6124 is commonly associated with Playful.

Similar Named Colors

Vivid Vermilion #E56024 ΔE 1.22
Flame #E25822 ΔE 2.58
Deep Carrot Orange #E9692C ΔE 2.79
Persimmon #EC5800 ΔE 3.08

Code Snippets

/* Background */
.element {
    background-color: #DF6124;
}

/* Text */
.element {
    color: #DF6124;
}

/* Border */
.element {
    border: 1px solid #DF6124;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #DF6124,
        #C4E8FA
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #DF6124,
        #C4E8FA
    );
}

// SCSS variable
$vivid-red-tangelo: #DF6124;

// With RGB channels (useful for rgba() usage)
$vivid-red-tangelo-r: 223;
$vivid-red-tangelo-g: 97;
$vivid-red-tangelo-b: 36;

// Usage
.element {
    background-color: $vivid-red-tangelo;
    color: rgba($vivid-red-tangelo-r, $vivid-red-tangelo-g, $vivid-red-tangelo-b, 0.8);
}