Steel Blue
HEX: #4682B4 | Modern Palette
Color Specifications
#4682B4
70, 130, 180
207°, 61% ,70%
61.11, 27.78, 0, 29.41
About Steel Blue
Steel Blue (#4682B4) is a color with RGB(70, 130, 180) and HSL(207.27°, 61.11%, 70.59%). In design, it fits Cool styles and is suitable for Text, Button, Accent. Its complementary color is #B47846, which creates strong contrast. Its triadic palette includes #B44682 and #82B446. The name comes from Steel Blue (English).
- HEX: #4682B4
- RGB: 70, 130, 180
- HSL: 207.27°, 61.11%, 70.59%
- Style: Cool
- Use case: Text, Button, Accent
- Complementary color: #B47846
- Triadic colors: #B44682, #82B446
- The name comes from Steel Blue (English).
Live Components
Color Palettes
Steel Blue #4682B4 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
Steel Blue #4682B4 pairs with #B47846 as its complementary color, and #B44682 and #82B446 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 concept of 'steel blue' as a color is derived from the visual properties of steel, especially when it undergoes a bluing process (a passivation treatment that creates a protective layer of magnetite on the surface of ferrous metals, giving them a blue-black appearance). This process has been used for centuries, particularly for firearms and tools. As color nomenclature became more standardized and descriptive in the 19th century, 'steel blue' emerged to describe a specific shade that evokes this metallic, slightly muted blue. It gained popularity as a color for textiles, paints, and other manufactured goods.
First Recorded Use
The term 'steel blue' as a specific color name began to appear in English around the late 19th century. Early references often describe it in fashion or interior design contexts.
Cultural Associations
Steel Blue is often associated with qualities like strength, durability, and sophistication, reflecting the material it's named after. It's a versatile color, often used in professional settings, menswear, and home decor for its calming yet robust feel. It can evoke a sense of industrial elegance or a cool, natural tone reminiscent of stormy skies or deep water.
Code Snippets
/* Background */
.element {
background-color: #4682B4;
}
/* Text */
.element {
color: #4682B4;
}
/* Border */
.element {
border: 1px solid #4682B4;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#4682B4,
#E2B086
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#4682B4,
#E2B086
);
}
// SCSS variable
$steel-blue: #4682B4;
// With RGB channels (useful for rgba() usage)
$steel-blue-r: 70;
$steel-blue-g: 130;
$steel-blue-b: 180;
// Usage
.element {
background-color: $steel-blue;
color: rgba($steel-blue-r, $steel-blue-g, $steel-blue-b, 0.8);
}