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
Blue (Munsell) #0093AF 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 (Munsell) #0093AF pairs with #AF1C00 as its complementary color, and #AF0093 and #93AF00 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: #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);
}