Sapphire
HEX: #0F52BA | Modern Palette
Color Specifications
#0F52BA
15, 82, 186
216°, 85% ,39%
92, 56, 0, 27
About Sapphire
Sapphire (#0F52BA) is a color with RGB(15, 82, 186) and HSL(216.5°, 85.1%, 39.4%). 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 #BA770F, which creates strong contrast. Its triadic palette includes #BA0F52 and #52BA0F. The name comes from sapphirus (Latin).
- HEX: #0F52BA
- RGB: 15, 82, 186
- HSL: 216.5°, 85.1%, 39.4%
- Mood: Bold
- Style: Vivid, Cool
- Use case: Text, Button, Accent
- Complementary color: #BA770F
- Triadic colors: #BA0F52, #52BA0F
- The name comes from sapphirus (Latin).
Live Components
Color Palettes
Sapphire #0F52BA 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
Sapphire #0F52BA pairs with #BA770F as its complementary color, and #BA0F52 and #52BA0F in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The term 'sapphire' has a long history, initially referring to various blue stones in antiquity, including lapis lazuli. It wasn't until later periods that the term became more specifically associated with the corundum variety we recognize today. The color name 'sapphire' as a distinct hue, separate from the gemstone, gained prominence with the standardization of color terminology.
First Recorded Use
The English word 'sapphire' emerged in the late 13th century, directly from Old French 'saphir' and Latin 'sapphirus'. Its initial use was to describe the gemstone.
Cultural Associations
Sapphire is culturally significant as a precious gemstone, often associated with royalty, wisdom, and divinity across various civilizations. It is the birthstone for September and is frequently used in engagement rings and other significant jewelry. Its deep blue color has long symbolized truth and sincerity.
Code Snippets
/* Background */
.element {
background-color: #0F52BA;
}
/* Text */
.element {
color: #0F52BA;
}
/* Border */
.element {
border: 1px solid #0F52BA;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#0F52BA,
#BA770F
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#0F52BA,
#BA770F
);
}
// SCSS variable
$sapphire: #0F52BA;
// With RGB channels (useful for rgba() usage)
$sapphire-r: 15;
$sapphire-g: 82;
$sapphire-b: 186;
// Usage
.element {
background-color: $sapphire;
color: rgba($sapphire-r, $sapphire-g, $sapphire-b, 0.8);
}