Alloy Orange
HEX: #C46210 | Modern Palette
Color Specifications
#C46210
196, 98, 16
27°, 91% ,76%
0, 50, 91.84, 23.14
About Alloy Orange
Alloy Orange (#C46210) is a color with RGB(196, 98, 16) and HSL(27.33°, 91.84%, 76.86%). It is commonly associated with Bold, Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #1072C4, which creates strong contrast. Its triadic palette includes #10C462 and #6210C4. The name comes from Alloy Orange (English).
- HEX: #C46210
- RGB: 196, 98, 16
- HSL: 27.33°, 91.84%, 76.86%
- Mood: Bold, Playful
- Style: Neon, Warm
- Use case: Text, Button, Accent
- Complementary color: #1072C4
- Triadic colors: #10C462, #6210C4
- The name comes from Alloy Orange (English).
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 #C46210 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The term 'Alloy Orange' is a descriptive color name, not a historical pigment. Its origin is tied to the need for precise color communication in design, manufacturing, and digital media. 'Alloy' refers to a mixture of metals, and many alloys (like some bronzes, coppers, or even specific steel treatments) can exhibit a range of reddish-orange to brownish-orange colors. The 'orange' part specifies the dominant hue. It's a modern descriptor rather than a traditional color name with a long history of use in art or literature.
First Recorded Use
Likely emerged with the standardization of color names in digital and industrial contexts, possibly 1980s-1990s.
Cultural Associations
As a relatively modern and technical color name, 'Alloy Orange' doesn't carry deep historical cultural significance like 'royal blue' or 'tyrian purple'. Its cultural impact is more in its utility for designers, engineers, and artists to specify a particular shade that evokes industrial materials, warmth, or a metallic sheen. It might be associated with modern industrial design, automotive finishes, or digital interfaces where a sophisticated, slightly muted orange is desired.
Code Snippets
/* Background */
.element {
background-color: #C46210;
}
/* Text */
.element {
color: #C46210;
}
/* Border */
.element {
border: 1px solid #C46210;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#C46210,
#8EC9FA
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#C46210,
#8EC9FA
);
}
// SCSS variable
$alloy-orange: #C46210;
// With RGB channels (useful for rgba() usage)
$alloy-orange-r: 196;
$alloy-orange-g: 98;
$alloy-orange-b: 16;
// Usage
.element {
background-color: $alloy-orange;
color: rgba($alloy-orange-r, $alloy-orange-g, $alloy-orange-b, 0.8);
}