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
Ultramarine #120A8F 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
Ultramarine #120A8F pairs with #878F0A as its complementary color, and #8F120A and #0A8F12 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}