Midnight Green
HEX: #004953 | Modern Palette
Color Specifications
#004953
0, 73, 83
187°, 100% ,32%
100, 12.05, 0, 67.45
About Midnight Green
Midnight Green (#004953) is a color with RGB(0, 73, 83) and HSL(187.23°, 100%, 32.55%). It is commonly associated with Bold moods. In design, it fits Vivid, Cool styles and is suitable for Text, Button, Accent. Its complementary color is #530A00, which creates strong contrast. Its triadic palette includes #530049 and #495300. The name comes from Midnight Green (English).
- HEX: #004953
- RGB: 0, 73, 83
- HSL: 187.23°, 100%, 32.55%
- Mood: Bold
- Style: Vivid, Cool
- Use case: Text, Button, Accent
- Complementary color: #530A00
- Triadic colors: #530049, #495300
- The name comes from Midnight Green (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 #004953 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
While 'midnight green' as a descriptive term for a dark green likely existed informally for much longer, its prominence as a distinct, named color, especially with a specific hex code, is largely attributed to its adoption by the Philadelphia Eagles NFL team. They introduced this color as part of their primary uniform scheme in 1996, replacing their previous kelly green. This move significantly popularized the color and gave it a strong, recognizable identity.
First Recorded Use
The specific hex code #004953 and its popular association with the Philadelphia Eagles likely solidified its widespread recognition in the late 1990s.
Cultural Associations
Midnight Green is most strongly associated with the Philadelphia Eagles NFL team, making it a significant color in American sports culture, particularly in the Philadelphia metropolitan area. Fans often wear this color to show support for the team. Beyond sports, it is sometimes used in design for a sophisticated, deep, and natural feel, often evoking themes of nature, luxury, or tranquility due to its dark green hue.
Code Snippets
/* Background */
.element {
background-color: #004953;
}
/* Text */
.element {
color: #004953;
}
/* Border */
.element {
border: 1px solid #004953;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#004953,
#A61400
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#004953,
#A61400
);
}
// SCSS variable
$midnight-green: #004953;
// With RGB channels (useful for rgba() usage)
$midnight-green-r: 0;
$midnight-green-g: 73;
$midnight-green-b: 83;
// Usage
.element {
background-color: $midnight-green;
color: rgba($midnight-green-r, $midnight-green-g, $midnight-green-b, 0.8);
}