Royal Azure

HEX: #0038A8 | Modern Palette

On White
9.85:1
PASS
On Black
2.13:1
FAIL

Color Specifications

HEX
#0038A8
RGB
0, 56, 168
HSL
220°, 100% ,65%
CMYK
100, 66.67, 0, 34.12

About Royal Azure

Royal Azure (#0038A8) is a color with RGB(0, 56, 168) and HSL(220°, 100%, 65.88%). 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 #A87000, which creates strong contrast. Its triadic palette includes #A80038 and #38A800. The name comes from Royal Azure (English).

  • HEX: #0038A8
  • RGB: 0, 56, 168
  • HSL: 220°, 100%, 65.88%
  • Mood: Bold, Playful
  • Style: Vivid, Neon
  • Use case: Text, Button, Accent
  • Complementary color: #A87000
  • Triadic colors: #A80038, #38A800
  • The name comes from Royal Azure (English).

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 #0038A8 from deepest shade to lightest tint.

Color Characteristics

Mood
Bold Playful
Style
Vivid Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #2F2FA8
Protanopia #3535A8
Tritanopia #005252
Achromatopsia #434343

Frequently Asked Questions

Royal Azure (#0038A8) is a color with RGB(0, 56, 168) and HSL(220°, 100%, 65.88%).

#0038A8 pairs strongly with #A87000 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#0038A8 is suitable for Text, Button, Accent and works well with Vivid, Neon styles.

#0038A8 is commonly associated with Bold, Playful.

The name Royal Azure is linked to Royal Azure from English, meaning A deep, rich blue color historically associated with royalty and the precious gemstone lapis lazuli..

Name, History & Etymology

Origin Word Royal Azure
Meaning A deep, rich blue color historically associated with royalty and the precious gemstone lapis lazuli.
Language English
First Recorded Use Late Middle Ages / Early Renaissance (as a concept of 'royal blue')

History

The color blue, particularly deep blues, has long held symbolic importance. Ultramarine, derived from lapis lazuli, was one of the most expensive pigments available for centuries, often reserved for depicting the Virgin Mary's robes or for royal commissions, hence its association with 'royal' status. The term 'royal blue' became more formalized in English in the 18th century, reportedly for Queen Charlotte. 'Azure' is also a fundamental tincture in heraldry, representing truth and loyalty. 'Royal Azure' combines these two powerful associations, suggesting a blue that is both regal and deeply traditional.

First Recorded Use

While the specific term 'Royal Azure' might be a more modern descriptive phrase, the concept of a 'royal blue' color, often derived from lapis lazuli pigment (ultramarine), has been significant since at least the 14th-15th centuries in European art and heraldry. The word 'azure' itself comes from Old French 'azur', ultimately from Persian 'lazhward' (lapis lazuli).

Cultural Associations

In many Western cultures, blue signifies stability, wisdom, and royalty. The specific shade #0038a8 is a vibrant, deep blue that evokes a sense of dignity and importance. It's a color often seen in national flags, corporate branding aiming for trustworthiness, and formal attire. Its association with 'azure' also links it to clear skies and the sea, adding a dimension of vastness and serenity.

Similar Named Colors

Egyptian Blue #1034A6 ΔE 1.50
UA Blue #0033AA ΔE 1.65
Smalt #003399 ΔE 2.38

Code Snippets

/* Background */
.element {
    background-color: #0038A8;
}

/* Text */
.element {
    color: #0038A8;
}

/* Border */
.element {
    border: 1px solid #0038A8;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #0038A8,
        #FFC551
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #0038A8,
        #FFC551
    );
}

// SCSS variable
$royal-azure: #0038A8;

// With RGB channels (useful for rgba() usage)
$royal-azure-r: 0;
$royal-azure-g: 56;
$royal-azure-b: 168;

// Usage
.element {
    background-color: $royal-azure;
    color: rgba($royal-azure-r, $royal-azure-g, $royal-azure-b, 0.8);
}