Orioles Orange

HEX: #FB4F14 | Modern Palette

On White
3.37:1
FAIL
On Black
6.23:1
PASS

Color Specifications

HEX
#FB4F14
RGB
251, 79, 20
HSL
15°, 92% ,98%
CMYK
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

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

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #9D9D00
Protanopia #74741B
Tritanopia #FC4A4A
Achromatopsia #8C8C8C

Frequently Asked Questions

Orioles Orange (#FB4F14) is a color with RGB(251, 79, 20) and HSL(15.32°, 92.03%, 98.43%).

#FB4F14 pairs strongly with #14C0FB as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#FB4F14 is suitable for Text, Button, Background and works well with Neon, Warm styles.

#FB4F14 is commonly associated with Playful.

The name Orioles Orange is linked to Orioles Orange from English, meaning A specific shade of orange associated with the Baltimore Orioles baseball team..

Name, History & Etymology

Origin Word Orioles Orange
Meaning A specific shade of orange associated with the Baltimore Orioles baseball team.
Language English
First Recorded Use Mid-20th Century

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.

Similar Named Colors

Orange Red #FF4500 ΔE 1.34
Tangelo #F94D00 ΔE 1.59
International Orange #FF4F00 ΔE 1.72
Giants Orange #FE5A1D ΔE 2.14

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