Ultramarine
HEX: #120A8F | Modern Palette
Color Specifications
#120A8F
18, 10, 143
243°, 93% ,56%
87.41, 93.01, 0, 43.92
About Ultramarine
Ultramarine (#120A8F) is a color with RGB(18, 10, 143) and HSL(243.61°, 93.01%, 56.08%). It is commonly associated with Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #878F0A, which creates strong contrast. Its triadic palette includes #8F120A and #0A8F12. The name comes from ultramarinus (Latin).
- HEX: #120A8F
- RGB: 18, 10, 143
- HSL: 243.61°, 93.01%, 56.08%
- Mood: Bold
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #878F0A
- Triadic colors: #8F120A, #0A8F12
- The name comes from ultramarinus (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 #120A8F from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Ultramarine was originally derived from lapis lazuli, a metamorphic rock found primarily in Afghanistan. The pigment was highly prized for its vibrant blue color and permanence. Its name reflects its origin, as it was imported to Europe from 'beyond the sea'. For centuries, it was the most expensive blue pigment, often reserved for the most important figures in paintings, such as the Virgin Mary. A synthetic version, French Ultramarine, was developed in the early 19th century, making the color much more accessible and affordable.
First Recorded Use
13th century
Cultural Associations
Due to its historical cost and brilliance, ultramarine became associated with royalty, divinity, and luxury. It is prominently featured in Renaissance and Baroque art. Its deep, rich blue evokes feelings of depth, spirituality, and calm. In modern contexts, it is a popular color in fashion, interior design, and branding for its sophisticated and classic appeal.
Code Snippets
/* Background */
.element {
background-color: #120A8F;
}
/* Text */
.element {
color: #120A8F;
}
/* Border */
.element {
border: 1px solid #120A8F;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#120A8F,
#EBF727
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#120A8F,
#EBF727
);
}
// SCSS variable
$ultramarine: #120A8F;
// With RGB channels (useful for rgba() usage)
$ultramarine-r: 18;
$ultramarine-g: 10;
$ultramarine-b: 143;
// Usage
.element {
background-color: $ultramarine;
color: rgba($ultramarine-r, $ultramarine-g, $ultramarine-b, 0.8);
}