Quartz
HEX: #51484F | Modern Palette
Color Specifications
#51484F
81, 72, 79
313°, 11% ,31%
0, 11.11, 2.47, 68.24
About Quartz
Quartz (#51484F) is a color with RGB(81, 72, 79) and HSL(313.33°, 11.11%, 31.76%). In design, it fits Muted, Warm styles and is suitable for Text, Background, Border. Its complementary color is #48514A, which creates strong contrast. Its triadic palette includes #4F5148 and #484F51. The name comes from Quarz (German).
- HEX: #51484F
- RGB: 81, 72, 79
- HSL: 313.33°, 11.11%, 31.76%
- Style: Muted, Warm
- Use case: Text, Background, Border
- Complementary color: #48514A
- Triadic colors: #4F5148, #484F51
- The name comes from Quarz (German).
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 #51484F from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#4B4B4F
#49494F
#504949
#4B4B4B
Frequently Asked Questions
Name, History & Etymology
History
The word 'Quarz' was first documented by the German metallurgist Georgius Agricola in his seminal work 'De re metallica' in 1546. He used it to refer to a specific type of mineral found in ore veins. Before this, various local mining terms might have been used. The term gained wider scientific acceptance as mineralogy developed. Its etymology is debated, with theories suggesting it comes from a Slavic word for 'hard' or an old German mining term related to 'cross-vein' or 'tough'.
First Recorded Use
Georgius Agricola's 'De re metallica' (1546)
Cultural Associations
Quartz is one of the most common minerals on Earth and has been used by humans for millennia. Historically, it was used for tools (e.g., flint, chert), and its piezoelectric properties (discovered in the late 19th century) made it crucial for electronics, particularly in watches, radios, and computers for precise timing. Various forms of quartz, like amethyst, citrine, and rose quartz, are popular as gemstones and have been attributed with various mystical or healing properties in different cultures, though these are not scientifically supported. Its abundance and versatility have made it a significant material in both practical and decorative applications across many civilizations.
Similar Named Colors
Code Snippets
/* Background */
.element {
background-color: #51484F;
}
/* Text */
.element {
color: #51484F;
}
/* Border */
.element {
border: 1px solid #51484F;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#51484F,
#485A4C
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#51484F,
#485A4C
);
}
// SCSS variable
$quartz: #51484F;
// With RGB channels (useful for rgba() usage)
$quartz-r: 81;
$quartz-g: 72;
$quartz-b: 79;
// Usage
.element {
background-color: $quartz;
color: rgba($quartz-r, $quartz-g, $quartz-b, 0.8);
}