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
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 #0F52BA from deepest shade to lightest tint.
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);
}