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
Blue (Pantone) #0018A8 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
Blue (Pantone) #0018A8 pairs with #A89000 as its complementary color, and #A80018 and #18A800 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}