Orioles Orange
HEX: #FB4F14 | Modern Palette
Color Specifications
#FB4F14
251, 79, 20
15°, 92% ,98%
0, 68.53, 92.03, 1.57
About Orioles Orange
Orioles Orange (#FB4F14) is a color with RGB(251, 79, 20) and HSL(15.32°, 92.03%, 98.43%). 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 #14C0FB, which creates strong contrast. Its triadic palette includes #14FB4F and #4F14FB. The name comes from Orioles Orange (English).
- HEX: #FB4F14
- RGB: 251, 79, 20
- HSL: 15.32°, 92.03%, 98.43%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #14C0FB
- Triadic colors: #14FB4F, #4F14FB
- The name comes from Orioles Orange (English).
Live Components
Color Palettes
Orioles Orange #FB4F14 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
Orioles Orange #FB4F14 pairs with #14C0FB as its complementary color, and #14FB4F and #4F14FB in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The Baltimore Orioles baseball team adopted their current name in 1954 when the St. Louis Browns relocated to Baltimore. Along with the name change, the team established its iconic color scheme of black, white, and a distinctive shade of orange. This specific orange, often referred to as 'Orioles Orange,' became a core part of their brand identity, appearing on uniforms, merchandise, and stadium branding. The color is deeply ingrained in the team's history and fan culture.
First Recorded Use
1954
Cultural Associations
Orioles Orange is a powerful symbol for fans of the Baltimore Orioles, representing team loyalty, regional pride (especially in Maryland), and the spirit of baseball. It is widely recognized in sports culture and is often seen during baseball season, particularly in Baltimore. The color evokes a sense of tradition and community among its supporters.
Code Snippets
/* Background */
.element {
background-color: #FB4F14;
}
/* Text */
.element {
color: #FB4F14;
}
/* Border */
.element {
border: 1px solid #FB4F14;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FB4F14,
#F7FDFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FB4F14,
#F7FDFF
);
}
// SCSS variable
$orioles-orange: #FB4F14;
// With RGB channels (useful for rgba() usage)
$orioles-orange-r: 251;
$orioles-orange-g: 79;
$orioles-orange-b: 20;
// Usage
.element {
background-color: $orioles-orange;
color: rgba($orioles-orange-r, $orioles-orange-g, $orioles-orange-b, 0.8);
}