International Klein Blue
HEX: #002FA7 | Modern Palette
Color Specifications
#002FA7
0, 47, 167
223°, 100% ,65%
100, 71.86, 0, 34.51
About International Klein Blue
International Klein Blue (#002FA7) is a color with RGB(0, 47, 167) and HSL(223.11°, 100%, 65.49%). 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 #A77800, which creates strong contrast. Its triadic palette includes #A7002F and #2FA700. The name comes from International Klein Blue (French).
- HEX: #002FA7
- RGB: 0, 47, 167
- HSL: 223.11°, 100%, 65.49%
- Mood: Bold, Playful
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #A77800
- Triadic colors: #A7002F, #2FA700
- The name comes from International Klein Blue (French).
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 #002FA7 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
International Klein Blue (IKB) is a deep ultramarine blue pigment developed by the French artist Yves Klein in collaboration with Édouard Adam, a chemical pharmacist. Klein registered IKB as a trademark in 1960, though he never patented the formula itself, only the name. The unique matte and vibrant quality of IKB comes from a synthetic resin binder (Rhodopas M60A) that suspends the pure ultramarine pigment without dulling its intensity, allowing the pigment to retain as much of its original brilliance as possible. Klein used IKB extensively in his monochromatic paintings, sculptures, and performances, aiming to evoke the immaterial and the infinite.
First Recorded Use
1957
Cultural Associations
IKB is synonymous with Yves Klein's artistic identity and his exploration of color as a pure, spiritual entity. It represents a significant moment in post-war European art, particularly in movements like Nouveau Réalisme. The color is often associated with concepts of the void, the cosmos, and the sublime. Its distinctive matte finish and intense hue make it instantly recognizable and influential in contemporary art and design. Klein's use of IKB challenged traditional notions of painting and art objects, emphasizing the experience and presence of color itself.
Code Snippets
/* Background */
.element {
background-color: #002FA7;
}
/* Text */
.element {
color: #002FA7;
}
/* Border */
.element {
border: 1px solid #002FA7;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#002FA7,
#FFCD4F
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#002FA7,
#FFCD4F
);
}
// SCSS variable
$international-klein-blue: #002FA7;
// With RGB channels (useful for rgba() usage)
$international-klein-blue-r: 0;
$international-klein-blue-g: 47;
$international-klein-blue-b: 167;
// Usage
.element {
background-color: $international-klein-blue;
color: rgba($international-klein-blue-r, $international-klein-blue-g, $international-klein-blue-b, 0.8);
}