B'dazzled Blue

HEX: #2E5894 | Modern Palette

On White
7.14:1
PASS
On Black
2.94:1
FAIL

Color Specifications

HEX
#2E5894
RGB
46, 88, 148
HSL
215°, 68% ,58%
CMYK
68.92, 40.54, 0, 41.96

About B'dazzled Blue

B'dazzled Blue (#2E5894) is a color with RGB(46, 88, 148) and HSL(215.29°, 68.92%, 58.04%). In design, it fits Cool styles and is suitable for Text, Button, Accent. Its complementary color is #946A2E, which creates strong contrast. Its triadic palette includes #942E58 and #58942E. The name comes from B'dazzled Blue (English).

  • HEX: #2E5894
  • RGB: 46, 88, 148
  • HSL: 215.29°, 68.92%, 58.04%
  • Style: Cool
  • Use case: Text, Button, Accent
  • Complementary color: #946A2E
  • Triadic colors: #942E58, #58942E
  • The name comes from B'dazzled Blue (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 #2E5894 from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Cool
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #4F4F94
Protanopia #555594
Tritanopia #036262
Achromatopsia #585858

Frequently Asked Questions

B'dazzled Blue (#2E5894) is a color with RGB(46, 88, 148) and HSL(215.29°, 68.92%, 58.04%).

#2E5894 pairs strongly with #946A2E as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#2E5894 is suitable for Text, Button, Accent and works well with Cool styles.

The name B'dazzled Blue is linked to B'dazzled Blue from English, meaning A playful, stylized spelling of 'bedazzled blue', meaning to be adorned or overwhelmed with a dazzling, sparkling blue color..

Name, History & Etymology

Origin Word B'dazzled Blue
Meaning A playful, stylized spelling of 'bedazzled blue', meaning to be adorned or overwhelmed with a dazzling, sparkling blue color.
Language English
First Recorded Use Late 20th Century - Early 21st Century

History

The word 'bedazzle' itself dates back to the 17th century, meaning 'to dazzle completely' or 'to confuse by dazzling light'. In the 20th century, particularly from the 1970s onwards, 'bedazzled' took on a more specific connotation of decorating with rhinestones, glitter, or other shiny embellishments. 'B'dazzled Blue' is a modern, informal, and often commercial adaptation of this concept, applying the idea of sparkling, eye-catching adornment to a shade of blue. The apostrophe in 'B'dazzled' is a common stylistic choice to imply a shortened or colloquial form of 'bedazzled'. The hex code #2e5894 represents a medium-dark, somewhat muted blue, which could evoke a deep sea, twilight sky, or a richly dyed fabric that might be 'bedazzled'.

First Recorded Use

The specific phrase 'B'dazzled Blue' as a named color or product descriptor likely emerged in the late 20th or early 21st century, capitalizing on the popularity of 'bedazzled' (which gained significant traction in the 1970s and 80s, and a resurgence in the 90s/00s) combined with a specific color. It's more of a marketing or descriptive term than a historically established color name.

Cultural Associations

The term 'bedazzled' carries connotations of glamour, extravagance, and sometimes kitsch, depending on the context. It's often associated with fashion, crafts, and pop culture. 'B'dazzled Blue' would likely evoke a sense of playful sparkle, richness, and perhaps a touch of theatricality. It's a color name that aims to be evocative and memorable, suggesting a blue that isn't just blue, but one that has a special, dazzling quality.

Similar Named Colors

Cyan Cobalt Blue #28589C ΔE 1.04
Medium Electric Blue #035096 ΔE 3.49
USAFA Blue #004F98 ΔE 3.65
Yale Blue #0F4D92 ΔE 3.88

Code Snippets

/* Background */
.element {
    background-color: #2E5894;
}

/* Text */
.element {
    color: #2E5894;
}

/* Border */
.element {
    border: 1px solid #2E5894;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #2E5894,
        #DEA14A
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #2E5894,
        #DEA14A
    );
}

// SCSS variable
$b'dazzled-blue: #2E5894;

// With RGB channels (useful for rgba() usage)
$b'dazzled-blue-r: 46;
$b'dazzled-blue-g: 88;
$b'dazzled-blue-b: 148;

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