Alloy Orange

HEX: #C46210 | Modern Palette

On White
4.12:1
FAIL
On Black
5.10:1
PASS

Color Specifications

HEX
#C46210
RGB
196, 98, 16
HSL
27°, 91% ,76%
CMYK
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

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

Color Characteristics

Mood
Bold Playful
Style
Neon Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #888800
Protanopia #727214
Tritanopia #C65C5C
Achromatopsia #7D7D7D

Frequently Asked Questions

Alloy Orange (#C46210) is a color with RGB(196, 98, 16) and HSL(27.33°, 91.84%, 76.86%).

#C46210 pairs strongly with #1072C4 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#C46210 is suitable for Text, Button, Accent and works well with Neon, Warm styles.

#C46210 is commonly associated with Bold, Playful.

The name Alloy Orange is linked to Alloy Orange from English, meaning A shade of orange resembling the color of certain metal alloys, particularly those with a reddish-orange hue..

Name, History & Etymology

Origin Word Alloy Orange
Meaning A shade of orange resembling the color of certain metal alloys, particularly those with a reddish-orange hue.
Language English
First Recorded Use Late 20th Century

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.

Similar Named Colors

Ruddy Brown #BB6528 ΔE 2.97
Light Brown #B5651D ΔE 3.57
Chocolate #D2691E ΔE 3.72
Tawny #CD5700 ΔE 3.81

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);
}