Vivid Tangelo

HEX: #F07427 | Modern Palette

On White
2.90:1
FAIL
On Black
7.23:1
PASS

Color Specifications

HEX
#F07427
RGB
240, 116, 39
HSL
22°, 83% ,94%
CMYK
0, 51.67, 83.75, 5.88

About Vivid Tangelo

Vivid Tangelo (#F07427) is a color with RGB(240, 116, 39) and HSL(22.99°, 83.75%, 94.12%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #27A3F0, which creates strong contrast. Its triadic palette includes #27F074 and #7427F0.

  • HEX: #F07427
  • RGB: 240, 116, 39
  • HSL: 22.99°, 83.75%, 94.12%
  • Mood: Playful
  • Style: Warm
  • Use case: Text, Button, Background
  • Complementary color: #27A3F0
  • Triadic colors: #27F074, #7427F0

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

Color Characteristics

Mood
Playful
Style
Warm

Accessibility Simulation

Deuteranopia #A5A510
Protanopia #89892A
Tritanopia #F26E6E
Achromatopsia #979797

Frequently Asked Questions

Vivid Tangelo (#F07427) is a color with RGB(240, 116, 39) and HSL(22.99°, 83.75%, 94.12%).

#F07427 pairs strongly with #27A3F0 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#F07427 is commonly associated with Playful.

Similar Named Colors

Pumpkin #FF7518 ΔE 2.80
Safety Orange #FF6700 ΔE 3.53
Princeton Orange #F58025 ΔE 4.08
Deep Carrot Orange #E9692C ΔE 4.19

Code Snippets

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

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

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

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

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

// SCSS variable
$vivid-tangelo: #F07427;

// With RGB channels (useful for rgba() usage)
$vivid-tangelo-r: 240;
$vivid-tangelo-g: 116;
$vivid-tangelo-b: 39;

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