Battleship Grey
HEX: #848482 | Modern Palette
Color Specifications
#848482
132, 132, 130
60°, 1% ,51%
0, 0, 1.52, 48.24
About Battleship Grey
Battleship Grey (#848482) is a color with RGB(132, 132, 130) and HSL(60°, 1.52%, 51.76%). It is commonly associated with Minimal, Earthy moods. In design, it fits Monochrome, Muted styles and is suitable for Text, Background, Border. Its complementary color is #828284, which creates strong contrast. Its triadic palette includes #828484 and #848284. The name comes from Battleship Grey (English).
- HEX: #848482
- RGB: 132, 132, 130
- HSL: 60°, 1.52%, 51.76%
- Mood: Minimal, Earthy
- Style: Monochrome, Muted
- Use case: Text, Background, Border
- Complementary color: #828284
- Triadic colors: #828484, #848284
- The name comes from Battleship Grey (English).
Live Components
Color Palettes
Battleship Grey #848482 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
Battleship Grey #848482 pairs with #828284 as its complementary color, and #828484 and #848284 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Shades & Tints
The shade and tint range for Battleship Grey #848482 moves from dark #0D0D0D tones through the base color to lighter #F2F2F2 tones, making it useful for depth, hierarchy, and background variation.
Color Characteristics
Accessibility Simulation
#848482
#848482
#848484
#848484
Frequently Asked Questions
Name, History & Etymology
History
The term 'Battleship Grey' emerged as navies around the world began standardizing the paint schemes for their warships in the late 19th century. Prior to this, ship colors varied widely. The adoption of a dark grey was primarily for camouflage, making ships less visible against the often-grey sea and sky, especially at a distance. The specific shade could vary slightly between navies and over time, but the concept remained consistent. It became iconic with the dreadnought era and the major naval powers of the early 20th century. The color is often associated with strength, utility, and military precision.
First Recorded Use
Circa 1890s
Cultural Associations
Beyond its literal use on ships, 'Battleship Grey' has entered popular culture as a descriptor for a utilitarian, often somewhat drab, but robust grey color. It's used in design, fashion, and industrial contexts to evoke a sense of durability, functionality, and a no-nonsense aesthetic. It can sometimes carry connotations of austerity or a lack of flair, but also reliability and strength. It's a common color for industrial machinery, certain types of clothing, and even some architectural elements.
Code Snippets
/* Background */
.element {
background-color: #848482;
}
/* Text */
.element {
color: #848482;
}
/* Border */
.element {
border: 1px solid #848482;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#848482,
#828286
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#848482,
#828286
);
}
// SCSS variable
$battleship-grey: #848482;
// With RGB channels (useful for rgba() usage)
$battleship-grey-r: 132;
$battleship-grey-g: 132;
$battleship-grey-b: 130;
// Usage
.element {
background-color: $battleship-grey;
color: rgba($battleship-grey-r, $battleship-grey-g, $battleship-grey-b, 0.8);
}