Dark Slate Blue
HEX: #483D8B | Modern Palette
Color Specifications
#483D8B
72, 61, 139
248°, 56% ,54%
48.2, 56.12, 0, 45.49
About Dark Slate Blue
Dark Slate Blue (#483D8B) is a color with RGB(72, 61, 139) and HSL(248.46°, 56.12%, 54.51%). In design, it fits Cool styles and is suitable for Text, Button, Logo. Its complementary color is #808B3D, which creates strong contrast. Its triadic palette includes #8B483D and #3D8B48. The name comes from Dark Slate Blue (English).
- HEX: #483D8B
- RGB: 72, 61, 139
- HSL: 248.46°, 56.12%, 54.51%
- Style: Cool
- Use case: Text, Button, Logo
- Complementary color: #808B3D
- Triadic colors: #8B483D, #3D8B48
- The name comes from Dark Slate Blue (English).
Live Components
Color Palettes
Dark Slate Blue #483D8B is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Dark Slate Blue #483D8B pairs with #808B3D as its complementary color, and #8B483D and #3D8B48 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The color name 'Dark Slate Blue' is part of the extended X11 color naming scheme, which became standardized in the late 1980s and early 1990s for computer displays. These names were designed to provide a more descriptive and human-readable way to refer to specific RGB color values beyond the basic primary and secondary colors. 'Slate Blue' itself refers to the bluish-grey color of natural slate rock, and 'Dark' simply indicates a deeper, less saturated version of that hue. It's a common color in web design and graphic interfaces due to its inclusion in standard color palettes.
First Recorded Use
Circa 1987 (with X11 color naming)
Cultural Associations
In modern digital culture, 'Dark Slate Blue' is often perceived as a sophisticated, stable, and somewhat conservative color. It's frequently used in corporate branding, user interfaces, and professional websites to convey reliability and seriousness. It can also evoke a sense of calm and depth, similar to other dark blues. While not as iconic as 'Navy Blue,' it holds a similar gravitas in digital contexts.
Code Snippets
/* Background */
.element {
background-color: #483D8B;
}
/* Text */
.element {
color: #483D8B;
}
/* Border */
.element {
border: 1px solid #483D8B;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#483D8B,
#BACC4A
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#483D8B,
#BACC4A
);
}
// SCSS variable
$dark-slate-blue: #483D8B;
// With RGB channels (useful for rgba() usage)
$dark-slate-blue-r: 72;
$dark-slate-blue-g: 61;
$dark-slate-blue-b: 139;
// Usage
.element {
background-color: $dark-slate-blue;
color: rgba($dark-slate-blue-r, $dark-slate-blue-g, $dark-slate-blue-b, 0.8);
}