Yankees Blue
HEX: #1C2841 | Modern Palette
Color Specifications
#1C2841
28, 40, 65
220°, 56% ,25%
56.92, 38.46, 0, 74.51
About Yankees Blue
Yankees Blue (#1C2841) is a color with RGB(28, 40, 65) and HSL(220.54°, 56.92%, 25.49%). It is commonly associated with Luxury moods. In design, it fits Cool styles and is suitable for Text, Button, Logo. Its complementary color is #41351C, which creates strong contrast. Its triadic palette includes #411C28 and #28411C. The name comes from Yankees Blue (English).
- HEX: #1C2841
- RGB: 28, 40, 65
- HSL: 220.54°, 56.92%, 25.49%
- Mood: Luxury
- Style: Cool
- Use case: Text, Button, Logo
- Complementary color: #41351C
- Triadic colors: #411C28, #28411C
- The name comes from Yankees Blue (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 #1C2841 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The New York Yankees, originally the Baltimore Orioles (1901-1902) and then the New York Highlanders (1903-1912), adopted their distinctive navy blue as a primary team color. This color became synonymous with the team's success and brand. Over the decades, 'Yankees Blue' has become a recognized color in sports and popular culture, often referring to the dark, almost navy blue used in their uniforms and branding. The hex code #1c2841 is a very dark, desaturated blue, consistent with the team's official colors.
First Recorded Use
While the exact first use of the phrase 'Yankees Blue' to describe a specific color is hard to pinpoint, the New York Yankees adopted their iconic navy blue color scheme early in their history, solidifying it by the 1910s and 1920s. The team was officially renamed the Yankees in 1913.
Cultural Associations
Yankees Blue is deeply ingrained in American sports culture, particularly baseball. It represents one of the most successful and recognizable sports franchises globally. The color evokes images of pinstripes, the 'NY' logo, and the team's rich history of championships. It is a symbol of tradition, excellence, and for many, a strong regional identity. The color is widely used in merchandise, fan apparel, and media related to the team.
Code Snippets
/* Background */
.element {
background-color: #1C2841;
}
/* Text */
.element {
color: #1C2841;
}
/* Border */
.element {
border: 1px solid #1C2841;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#1C2841,
#664E1C
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#1C2841,
#664E1C
);
}
// SCSS variable
$yankees-blue: #1C2841;
// With RGB channels (useful for rgba() usage)
$yankees-blue-r: 28;
$yankees-blue-g: 40;
$yankees-blue-b: 65;
// Usage
.element {
background-color: $yankees-blue;
color: rgba($yankees-blue-r, $yankees-blue-g, $yankees-blue-b, 0.8);
}