Blue (Munsell)
HEX: #0093AF | Modern Palette
Color Specifications
#0093AF
0, 147, 175
189°, 100% ,68%
100, 16, 0, 31.37
About Blue (Munsell)
Blue (Munsell) (#0093AF) is a color with RGB(0, 147, 175) and HSL(189.6°, 100%, 68.63%). 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 #AF1C00, which creates strong contrast. Its triadic palette includes #AF0093 and #93AF00.
- HEX: #0093AF
- RGB: 0, 147, 175
- HSL: 189.6°, 100%, 68.63%
- Mood: Bold, Playful
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #AF1C00
- Triadic colors: #AF0093, #93AF00
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 #0093AF from deepest shade to lightest tint.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #0093AF;
}
/* Text */
.element {
color: #0093AF;
}
/* Border */
.element {
border: 1px solid #0093AF;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#0093AF,
#FF795F
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#0093AF,
#FF795F
);
}
// SCSS variable
$blue-(munsell): #0093AF;
// With RGB channels (useful for rgba() usage)
$blue-(munsell)-r: 0;
$blue-(munsell)-g: 147;
$blue-(munsell)-b: 175;
// Usage
.element {
background-color: $blue-(munsell);
color: rgba($blue-(munsell)-r, $blue-(munsell)-g, $blue-(munsell)-b, 0.8);
}