Medium Teal Blue
HEX: #0054B4 | Modern Palette
Color Specifications
#0054B4
0, 84, 180
212°, 100% ,70%
100, 53.33, 0, 29.41
About Medium Teal Blue
Medium Teal Blue (#0054B4) is a color with RGB(0, 84, 180) and HSL(212°, 100%, 70.59%). 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 #B46000, which creates strong contrast. Its triadic palette includes #B40054 and #54B400.
- HEX: #0054B4
- RGB: 0, 84, 180
- HSL: 212°, 100%, 70.59%
- Mood: Bold, Playful
- Style: Neon, Cool
- Use case: Text, Button, Accent
- Complementary color: #B46000
- Triadic colors: #B40054, #54B400
Live Components
Color Palettes
Medium Teal Blue #0054B4 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
Medium Teal Blue #0054B4 pairs with #B46000 as its complementary color, and #B40054 and #54B400 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: #0054B4;
}
/* Text */
.element {
color: #0054B4;
}
/* Border */
.element {
border: 1px solid #0054B4;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#0054B4,
#FFB969
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#0054B4,
#FFB969
);
}
// SCSS variable
$medium-teal-blue: #0054B4;
// With RGB channels (useful for rgba() usage)
$medium-teal-blue-r: 0;
$medium-teal-blue-g: 84;
$medium-teal-blue-b: 180;
// Usage
.element {
background-color: $medium-teal-blue;
color: rgba($medium-teal-blue-r, $medium-teal-blue-g, $medium-teal-blue-b, 0.8);
}