Spanish Orange
HEX: #E86100 | Modern Palette
Color Specifications
#E86100
232, 97, 0
25°, 100% ,90%
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
Color Palettes
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.
Frequently Asked Questions
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);
}