B'dazzled Blue
HEX: #2E5894 | Modern Palette
Color Specifications
#2E5894
46, 88, 148
215°, 68% ,58%
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
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 #2E5894 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}