Smalt
HEX: #003399 | Modern Palette
Color Specifications
#003399
0, 51, 153
220°, 100% ,60%
100, 66.67, 0, 40
About Smalt
Smalt (#003399) is a color with RGB(0, 51, 153) and HSL(220°, 100%, 60%). 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 Gamboge Orange (brown) (#996600), which creates strong contrast. Its triadic palette includes #990033 and #339900. The name comes from schmalz (Germanic (via Italian)).
- HEX: #003399
- RGB: 0, 51, 153
- HSL: 220°, 100%, 60%
- Mood: Bold, Playful
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: Gamboge Orange (brown) (#996600)
- Triadic colors: #990033, #339900
- The name comes from schmalz (Germanic (via Italian)).
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 #003399 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Smalt is a deep blue pigment made from ground cobalt glass, first produced in Bohemia in the 15th century. It was a cheaper alternative to ultramarine and was widely used in European painting from the 16th to the 18th centuries. Its use declined with the advent of Prussian blue and other synthetic pigments in the 18th and 19th centuries. Smalt is known for its tendency to lose intensity over time, especially in oil mediums.
First Recorded Use
The term 'smalt' for the pigment itself emerged in the late 15th or early 16th century, though the material's use predates this specific naming.
Cultural Associations
Historically, smalt was significant for its accessibility and vibrant blue hue, making it a staple in religious art and decorative applications. Its presence in paintings often indicates a specific period of artistic practice before more stable blue pigments became common. The pigment's fading properties have sometimes altered the intended appearance of historical artworks.
Code Snippets
/* Background */
.element {
background-color: #003399;
}
/* Text */
.element {
color: #003399;
}
/* Border */
.element {
border: 1px solid #003399;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#003399,
#FFBB33
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#003399,
#FFBB33
);
}
// SCSS variable
$smalt: #003399;
// With RGB channels (useful for rgba() usage)
$smalt-r: 0;
$smalt-g: 51;
$smalt-b: 153;
// Usage
.element {
background-color: $smalt;
color: rgba($smalt-r, $smalt-g, $smalt-b, 0.8);
}