Phthalo Blue
HEX: #000F89 | Modern Palette
Color Specifications
#000F89
0, 15, 137
233°, 100% ,26%
100, 89, 0, 46
About Phthalo Blue
Phthalo Blue (#000F89) is a color with RGB(0, 15, 137) and HSL(233.4°, 100%, 26.9%). It is commonly associated with Bold, Luxury moods. In design, it fits Cool styles and is suitable for Text, Button, Accent. Its complementary color is #897A00, which creates strong contrast. Its triadic palette includes #89000F and #0F8900. The name comes from Phthalocyanine Blue (English (derived from Greek)).
- HEX: #000F89
- RGB: 0, 15, 137
- HSL: 233.4°, 100%, 26.9%
- Mood: Bold, Luxury
- Style: Cool
- Use case: Text, Button, Accent
- Complementary color: #897A00
- Triadic colors: #89000F, #0F8900
- The name comes from Phthalocyanine Blue (English (derived from Greek)).
Live Components
Color Palettes
Phthalo Blue #000F89 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Phthalo Blue #000F89 pairs with #897A00 as its complementary color, and #89000F and #0F8900 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
Phthalo Blue, specifically the pigment copper phthalocyanine, was accidentally discovered in 1928 by Scottish chemists at Scottish Dyes (later part of ICI). They were attempting to synthesize phthalonitrile and noticed a deep blue impurity. Its commercial production began in 1935 by ICI in the UK and DuPont in the US. It quickly gained popularity due to its intense blue color, high tinting strength, excellent lightfastness, and affordability compared to ultramarine and cobalt blue. It largely replaced Prussian Blue in many applications.
First Recorded Use
1930s
Cultural Associations
Phthalo Blue is a staple in artists' palettes across various mediums (oil, acrylic, watercolor) due to its vibrant, strong blue and excellent mixing properties. It's often used to create deep seascapes, night skies, and cool shadows. Its intensity means it's often used sparingly or mixed with other colors to achieve desired tones. It's also widely used in industrial applications like printing inks, plastics, and paints for its stability and colorfastness.
Code Snippets
/* Background */
.element {
background-color: #000F89;
}
/* Text */
.element {
color: #000F89;
}
/* Border */
.element {
border: 1px solid #000F89;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#000F89,
#897A00
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#000F89,
#897A00
);
}
// SCSS variable
$phthalo-blue: #000F89;
// With RGB channels (useful for rgba() usage)
$phthalo-blue-r: 0;
$phthalo-blue-g: 15;
$phthalo-blue-b: 137;
// Usage
.element {
background-color: $phthalo-blue;
color: rgba($phthalo-blue-r, $phthalo-blue-g, $phthalo-blue-b, 0.8);
}