Honolulu Blue
HEX: #006DB0 | Modern Palette
Color Specifications
#006DB0
0, 109, 176
202°, 100% ,69%
100, 38.07, 0, 30.98
About Honolulu Blue
Honolulu Blue (#006DB0) is a color with RGB(0, 109, 176) and HSL(202.84°, 100%, 69.02%). 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 #B04300, which creates strong contrast. Its triadic palette includes #B0006D and #6DB000. The name comes from Honolulu Blue (English).
- HEX: #006DB0
- RGB: 0, 109, 176
- HSL: 202.84°, 100%, 69.02%
- Mood: Bold, Playful
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #B04300
- Triadic colors: #B0006D, #6DB000
- The name comes from Honolulu 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 #006DB0 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The Detroit Lions NFL team was established in 1929 as the Portsmouth Spartans. In 1934, the team was purchased by George A. Richards and moved to Detroit, being renamed the Detroit Lions. Richards chose the team's iconic 'Honolulu Blue and Silver' color scheme. The blue was specifically named 'Honolulu Blue' to evoke the vibrant blues of the Hawaiian waters and sky. This color has been a consistent part of the team's identity ever since, with minor variations in shade over the decades.
First Recorded Use
The term 'Honolulu Blue' gained prominence with its adoption by the Detroit Lions NFL team in 1934, though the specific shade may have existed prior. The team's owner, George A. Richards, chose the color scheme, reportedly inspired by the colors of the ocean and sky in Hawaii, where he had vacationed.
Cultural Associations
Honolulu Blue is most strongly associated with the Detroit Lions NFL team, making it a significant color in American sports culture, particularly in Michigan. It represents the team's long history and fan base. Beyond sports, the name itself evokes images of tropical beaches, clear skies, and the Pacific Ocean, aligning with the popular perception of Honolulu as a tourist destination.
Code Snippets
/* Background */
.element {
background-color: #006DB0;
}
/* Text */
.element {
color: #006DB0;
}
/* Border */
.element {
border: 1px solid #006DB0;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#006DB0,
#FF9D61
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#006DB0,
#FF9D61
);
}
// SCSS variable
$honolulu-blue: #006DB0;
// With RGB channels (useful for rgba() usage)
$honolulu-blue-r: 0;
$honolulu-blue-g: 109;
$honolulu-blue-b: 176;
// Usage
.element {
background-color: $honolulu-blue;
color: rgba($honolulu-blue-r, $honolulu-blue-g, $honolulu-blue-b, 0.8);
}