Spanish Orange

HEX: #E86100 | Modern Palette

On White
3.42:1
FAIL
On Black
6.14:1
PASS

Color Specifications

HEX
#E86100
RGB
232, 97, 0
HSL
25°, 100% ,90%
CMYK
0, 58.19, 100, 9.02

About Spanish Orange

Spanish Orange (#E86100) is a color with RGB(232, 97, 0) and HSL(25.09°, 100%, 90.98%). 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 #0087E8, which creates strong contrast. Its triadic palette includes #00E861 and #6100E8.

  • HEX: #E86100
  • RGB: 232, 97, 0
  • HSL: 25.09°, 100%, 90.98%
  • Mood: Playful
  • Style: Neon, Warm
  • Use case: Text, Button, Background
  • Complementary color: #0087E8
  • Triadic colors: #00E861, #6100E8

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

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #999900
Protanopia #7A7A0A
Tritanopia #EA5B5B
Achromatopsia #8B8B8B

Frequently Asked Questions

Spanish Orange (#E86100) is a color with RGB(232, 97, 0) and HSL(25.09°, 100%, 90.98%).

#E86100 pairs strongly with #0087E8 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#E86100 is commonly associated with Playful.

Similar Named Colors

Persimmon #EC5800 ΔE 2.62
Vivid Red-tangelo #DF6124 ΔE 3.77
Deep Carrot Orange #E9692C ΔE 3.95
Vivid Vermilion #E56024 ΔE 3.99

Code Snippets

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

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

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

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

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

// SCSS variable
$spanish-orange: #E86100;

// With RGB channels (useful for rgba() usage)
$spanish-orange-r: 232;
$spanish-orange-g: 97;
$spanish-orange-b: 0;

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