Dark Midnight Blue
HEX: #003366 | Modern Palette
Color Specifications
#003366
0, 51, 102
210°, 100% ,40%
100, 50, 0, 60
About Dark Midnight Blue
Dark Midnight Blue (#003366) is a color with RGB(0, 51, 102) and HSL(210°, 100%, 40%). 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 #663300, which creates strong contrast. Its triadic palette includes #660033 and #336600.
- HEX: #003366
- RGB: 0, 51, 102
- HSL: 210°, 100%, 40%
- Mood: Bold
- Style: Vivid, Cool
- Use case: Text, Button, Accent
- Complementary color: #663300
- Triadic colors: #660033, #336600
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 #003366 from deepest shade to lightest tint.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #003366;
}
/* Text */
.element {
color: #003366;
}
/* Border */
.element {
border: 1px solid #003366;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#003366,
#CC6600
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#003366,
#CC6600
);
}
// SCSS variable
$dark-midnight-blue: #003366;
// With RGB channels (useful for rgba() usage)
$dark-midnight-blue-r: 0;
$dark-midnight-blue-g: 51;
$dark-midnight-blue-b: 102;
// Usage
.element {
background-color: $dark-midnight-blue;
color: rgba($dark-midnight-blue-r, $dark-midnight-blue-g, $dark-midnight-blue-b, 0.8);
}