Orange (Crayola)
HEX: #FF7538 | Modern Palette
Color Specifications
#FF7538
255, 117, 56
18°, 78% ,100%
0, 54.12, 78.04, 0
About Orange (Crayola)
Orange (Crayola) (#FF7538) is a color with RGB(255, 117, 56) and HSL(18.39°, 78.04%, 100%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #38C2FF, which creates strong contrast. Its triadic palette includes #38FF75 and #7538FF. The name comes from Orange (English).
- HEX: #FF7538
- RGB: 255, 117, 56
- HSL: 18.39°, 78.04%, 100%
- Mood: Playful
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #38C2FF
- Triadic colors: #38FF75, #7538FF
- The name comes from 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 #FF7538 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#ADAD28
#8D8D3B
#FF6F6F
#9E9E9E
Frequently Asked Questions
Name, History & Etymology
History
The Crayola color 'Orange' (often referred to as 'Crayola Orange' or 'Orange (Crayola)' to distinguish it from other shades) is one of the original 8 colors introduced in Crayola's first box of crayons in 1903. Its hex code #FF7538 is a specific digital representation of this classic color. The color itself is named after the orange fruit, which was introduced to Europe from Asia. The fruit's name, and subsequently the color's name, comes from the Old French 'pome d'orenge' (orange apple), from Arabic 'nāranj', from Persian 'nārang', from Sanskrit 'nāraṅga'.
First Recorded Use
The word 'orange' as a color name in English dates back to the late 15th or early 16th century, derived from the fruit. Before this, the color was often referred to as 'red-yellow' or 'saffron'.
Cultural Associations
Orange is a vibrant and energetic color. In many Western cultures, it is associated with autumn, harvest, warmth, enthusiasm, creativity, and joy. It is also the color of Halloween. In some Eastern cultures, particularly in Hinduism and Buddhism, saffron orange is considered sacred and is often worn by monks and holy men, symbolizing renunciation and spirituality. In the Netherlands, orange is the national color, representing the House of Orange-Nassau. It is also a common color for safety equipment due to its high visibility.
Code Snippets
/* Background */
.element {
background-color: #FF7538;
}
/* Text */
.element {
color: #FF7538;
}
/* Border */
.element {
border: 1px solid #FF7538;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FF7538,
#FFFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FF7538,
#FFFFFF
);
}
// SCSS variable
$orange-(crayola): #FF7538;
// With RGB channels (useful for rgba() usage)
$orange-(crayola)-r: 255;
$orange-(crayola)-g: 117;
$orange-(crayola)-b: 56;
// Usage
.element {
background-color: $orange-(crayola);
color: rgba($orange-(crayola)-r, $orange-(crayola)-g, $orange-(crayola)-b, 0.8);
}