Blue (NCS)
HEX: #0087BD | Modern Palette
Color Specifications
#0087BD
0, 135, 189
197°, 100% ,74%
100, 28.57, 0, 25.88
About Blue (NCS)
Blue (NCS) (#0087BD) is a color with RGB(0, 135, 189) and HSL(197.14°, 100%, 74.12%). It is commonly associated with Bold, Playful moods. In design, it fits Neon, Cool styles and is suitable for Text, Button, Accent. Its complementary color is #BD3600, which creates strong contrast. Its triadic palette includes #BD0087 and #87BD00.
- HEX: #0087BD
- RGB: 0, 135, 189
- HSL: 197.14°, 100%, 74.12%
- Mood: Bold, Playful
- Style: Neon, Cool
- Use case: Text, Button, Accent
- Complementary color: #BD3600
- Triadic colors: #BD0087, #87BD00
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 #0087BD from deepest shade to lightest tint.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #0087BD;
}
/* Text */
.element {
color: #0087BD;
}
/* Border */
.element {
border: 1px solid #0087BD;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#0087BD,
#FFA17B
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#0087BD,
#FFA17B
);
}
// SCSS variable
$blue-(ncs): #0087BD;
// With RGB channels (useful for rgba() usage)
$blue-(ncs)-r: 0;
$blue-(ncs)-g: 135;
$blue-(ncs)-b: 189;
// Usage
.element {
background-color: $blue-(ncs);
color: rgba($blue-(ncs)-r, $blue-(ncs)-g, $blue-(ncs)-b, 0.8);
}