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
Orange (Crayola) #FF7538 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
Orange (Crayola) #FF7538 pairs with #38C2FF as its complementary color, and #38FF75 and #7538FF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}