Medium Teal Blue

HEX: #0054B4 | Modern Palette

On White
7.17:1
PASS
On Black
2.93:1
FAIL

Color Specifications

HEX
#0054B4
RGB
0, 84, 180
HSL
212°, 100% ,70%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Bold Playful
Style
Neon Cool
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #4747B4
Protanopia #4F4FB4
Tritanopia #006767
Achromatopsia #575757

Frequently Asked Questions

Medium Teal Blue (#0054B4) is a color with RGB(0, 84, 180) and HSL(212°, 100%, 70.59%).

#0054B4 pairs strongly with #B46000 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#0054B4 is suitable for Text, Button, Accent and works well with Neon, Cool styles.

#0054B4 is commonly associated with Bold, Playful.

Similar Named Colors

Sapphire #0F52BA ΔE 1.68
Cyan Cobalt Blue #28589C ΔE 3.12
Cerulean Blue #2A52BE ΔE 3.78
USAFA Blue #004F98 ΔE 3.85

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);
}