Yale Blue
HEX: #0F4D92 | Modern Palette
Color Specifications
#0F4D92
15, 77, 146
211°, 81% ,31%
90, 47, 0, 43
About Yale Blue
Yale Blue (#0F4D92) is a color with RGB(15, 77, 146) and HSL(211.6°, 81.4%, 31.6%). It is commonly associated with Bold, Luxury moods. In design, it fits Vivid, Cool styles and is suitable for Text, Button, Accent. Its complementary color is #92540F, which creates strong contrast. Its triadic palette includes #920F4D and #4D920F. The name comes from Yale Blue (English).
- HEX: #0F4D92
- RGB: 15, 77, 146
- HSL: 211.6°, 81.4%, 31.6%
- Mood: Bold, Luxury
- Style: Vivid, Cool
- Use case: Text, Button, Accent
- Complementary color: #92540F
- Triadic colors: #920F4D, #4D920F
- The name comes from Yale 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 #0F4D92 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Yale Blue is the official color of Yale University. Its adoption is often attributed to a rowing race against Harvard in 1894. Yale's crew wore blue handkerchiefs, and after their victory, the color became informally associated with the university. Over time, this specific shade of blue was formalized and is now a registered trademark of Yale University. It is a dark, rich blue, often described as a 'navy' or 'midnight' blue.
First Recorded Use
The exact first use as a formally recognized color is debated, but it became prominent in the 1890s.
Cultural Associations
Yale Blue is deeply ingrained in the identity of Yale University and its alumni. It is used extensively in university branding, athletic uniforms, merchandise, and publications. It symbolizes tradition, excellence, and the prestige associated with the Ivy League institution. The color is also recognized beyond the university as a specific shade of blue, often referenced in design and color theory contexts.
Code Snippets
/* Background */
.element {
background-color: #0F4D92;
}
/* Text */
.element {
color: #0F4D92;
}
/* Border */
.element {
border: 1px solid #0F4D92;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#0F4D92,
#92540F
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#0F4D92,
#92540F
);
}
// SCSS variable
$yale-blue: #0F4D92;
// With RGB channels (useful for rgba() usage)
$yale-blue-r: 15;
$yale-blue-g: 77;
$yale-blue-b: 146;
// Usage
.element {
background-color: $yale-blue;
color: rgba($yale-blue-r, $yale-blue-g, $yale-blue-b, 0.8);
}