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
Blue (NCS) #0087BD 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 (NCS) #0087BD pairs with #BD3600 as its complementary color, and #BD0087 and #87BD00 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: #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);
}