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
Spanish Orange #E86100 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Spanish Orange #E86100 pairs with #0087E8 as its complementary color, and #00E861 and #6100E8 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}