Mountbatten Pink
HEX: #997A8D | Modern Palette
Color Specifications
#997A8D
153, 122, 141
323°, 20% ,60%
0, 20.26, 7.84, 40
About Mountbatten Pink
Mountbatten Pink (#997A8D) is a color with RGB(153, 122, 141) and HSL(323.23°, 20.26%, 60%). In design, it fits Muted, Warm styles and is suitable for Text, Background, Border. Its complementary color is #7A9986, which creates strong contrast. Its triadic palette includes #8D997A and #7A8D99. The name comes from Mountbatten Pink (English).
- HEX: #997A8D
- RGB: 153, 122, 141
- HSL: 323.23°, 20.26%, 60%
- Style: Muted, Warm
- Use case: Text, Background, Border
- Complementary color: #7A9986
- Triadic colors: #8D997A, #7A8D99
- The name comes from Mountbatten Pink (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 #997A8D from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#84848C
#7E7E8D
#977D7D
#838383
Frequently Asked Questions
Name, History & Etymology
History
Mountbatten Pink is a camouflage colour invented by Louis Mountbatten during World War II. The colour was a mix of battleship grey and a small amount of red, resulting in a dull, purplish-pink hue. The theory behind its effectiveness was that it would render ships less visible during dawn and dusk, as the colour would blend with the sky and sea at those times. It was primarily used on Royal Navy ships, particularly destroyers and smaller vessels. While its effectiveness is debated among historians and naval experts, it was certainly a distinctive and memorable camouflage scheme.
First Recorded Use
Circa World War II (1940s)
Cultural Associations
The colour is often associated with naval history and World War II. It has a certain romanticism due to its unique origin story and the figure of Lord Mountbatten. It's not a widely used colour in fashion or design today but holds a niche interest among military history enthusiasts and colour theorists. Its unusual appearance for a military camouflage often sparks curiosity.
Code Snippets
/* Background */
.element {
background-color: #997A8D;
}
/* Text */
.element {
color: #997A8D;
}
/* Border */
.element {
border: 1px solid #997A8D;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#997A8D,
#84AE94
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#997A8D,
#84AE94
);
}
// SCSS variable
$mountbatten-pink: #997A8D;
// With RGB channels (useful for rgba() usage)
$mountbatten-pink-r: 153;
$mountbatten-pink-g: 122;
$mountbatten-pink-b: 141;
// Usage
.element {
background-color: $mountbatten-pink;
color: rgba($mountbatten-pink-r, $mountbatten-pink-g, $mountbatten-pink-b, 0.8);
}