Blue (Pantone)
HEX: #0018A8 | Modern Palette
Color Specifications
#0018A8
0, 24, 168
231°, 100% ,65%
100, 85.71, 0, 34.12
About Blue (Pantone)
Blue (Pantone) (#0018A8) is a color with RGB(0, 24, 168) and HSL(231.43°, 100%, 65.88%). It is commonly associated with Bold, Playful moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #A89000, which creates strong contrast. Its triadic palette includes #A80018 and #18A800.
- HEX: #0018A8
- RGB: 0, 24, 168
- HSL: 231.43°, 100%, 65.88%
- Mood: Bold, Playful
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #A89000
- Triadic colors: #A80018, #18A800
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 #0018A8 from deepest shade to lightest tint.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #0018A8;
}
/* Text */
.element {
color: #0018A8;
}
/* Border */
.element {
border: 1px solid #0018A8;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#0018A8,
#FFE651
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#0018A8,
#FFE651
);
}
// SCSS variable
$blue-(pantone): #0018A8;
// With RGB channels (useful for rgba() usage)
$blue-(pantone)-r: 0;
$blue-(pantone)-g: 24;
$blue-(pantone)-b: 168;
// Usage
.element {
background-color: $blue-(pantone);
color: rgba($blue-(pantone)-r, $blue-(pantone)-g, $blue-(pantone)-b, 0.8);
}