Duke Blue
HEX: #00009C | Modern Palette
Color Specifications
#00009C
0, 0, 156
240°, 100% ,61%
100, 100, 0, 38.82
About Duke Blue
Duke Blue (#00009C) is a color with RGB(0, 0, 156) and HSL(240°, 100%, 61.18%). It is commonly associated with Bold, Playful moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #9C9C00, which creates strong contrast. Its triadic palette includes #9C0000 and #009C00. The name comes from Duke Blue (English).
- HEX: #00009C
- RGB: 0, 0, 156
- HSL: 240°, 100%, 61.18%
- Mood: Bold, Playful
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #9C9C00
- Triadic colors: #9C0000, #009C00
- The name comes from Duke 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 #00009C from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Duke University, originally Trinity College, adopted blue and white as its official colors in 1889. The choice of blue is often attributed to the desire to align with other prestigious universities that used blue, such as Yale. Over time, a specific deep blue became synonymous with the institution. The hex code #00009c is one of several digital representations used to define 'Duke Blue' across various media, ensuring consistency in branding.
First Recorded Use
The color 'Duke Blue' was officially adopted by Duke University (then Trinity College) in 1889, though the specific hex code #00009c represents a modern digital interpretation of that color. The university's athletic teams began using blue and white as their colors around that time.
Cultural Associations
Duke Blue is strongly associated with Duke University, particularly its highly successful athletic programs, most notably the men's basketball team. It is a symbol of academic excellence, athletic prowess, and the university's brand. The color evokes a sense of tradition, prestige, and loyalty among alumni and fans. It is widely recognized in collegiate sports and academic circles.
Code Snippets
/* Background */
.element {
background-color: #00009C;
}
/* Text */
.element {
color: #00009C;
}
/* Border */
.element {
border: 1px solid #00009C;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#00009C,
#FFFF39
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#00009C,
#FFFF39
);
}
// SCSS variable
$duke-blue: #00009C;
// With RGB channels (useful for rgba() usage)
$duke-blue-r: 0;
$duke-blue-g: 0;
$duke-blue-b: 156;
// Usage
.element {
background-color: $duke-blue;
color: rgba($duke-blue-r, $duke-blue-g, $duke-blue-b, 0.8);
}