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
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 #0054B4 from deepest shade to lightest tint.
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);
}