Smokey Topaz
HEX: #933D41 | Modern Palette
Color Specifications
#933D41
147, 61, 65
357°, 58% ,57%
0, 58.5, 55.78, 42.35
About Smokey Topaz
Smokey Topaz (#933D41) is a color with RGB(147, 61, 65) and HSL(357.21°, 58.5%, 57.65%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #3D938F, which creates strong contrast. Its triadic palette includes #41933D and #3D4193. The name comes from Smokey Topaz (English).
- HEX: #933D41
- RGB: 147, 61, 65
- HSL: 357.21°, 58.5%, 57.65%
- Mood: Romantic
- Style: Warm
- Use case: Text, Button, Logo
- Complementary color: #3D938F
- Triadic colors: #41933D, #3D4193
- The name comes from Smokey Topaz (English).
Live Components
Color Palettes
Smokey Topaz #933D41 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
Smokey Topaz #933D41 pairs with #3D938F as its complementary color, and #41933D and #3D4193 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
Smoky quartz has been used for millennia, with early examples found in Roman jewelry and Scottish cairngorms. The color 'Smokey Topaz' evokes the deep, earthy, and somewhat mysterious tones of this gemstone. In fashion and interior design, it represents sophistication, warmth, and a connection to nature. It's a versatile neutral that can be both grounding and luxurious.
First Recorded Use
The term 'smoky quartz' (the more accurate geological term) has been in use since at least the 18th century. 'Smokey Topaz' as a descriptive color name for fashion or decor would likely follow this, becoming more common in the 19th and 20th centuries as a more evocative, if less precise, term.
Cultural Associations
Often associated with autumn palettes, natural materials, and a sense of understated elegance. It can be seen as a more mature or serious alternative to lighter browns or greys. In some spiritual contexts, smoky quartz is believed to be a grounding stone that helps in detoxification and protection.
Code Snippets
/* Background */
.element {
background-color: #933D41;
}
/* Text */
.element {
color: #933D41;
}
/* Border */
.element {
border: 1px solid #933D41;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#933D41,
#54D2CC
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#933D41,
#54D2CC
);
}
// SCSS variable
$smokey-topaz: #933D41;
// With RGB channels (useful for rgba() usage)
$smokey-topaz-r: 147;
$smokey-topaz-g: 61;
$smokey-topaz-b: 65;
// Usage
.element {
background-color: $smokey-topaz;
color: rgba($smokey-topaz-r, $smokey-topaz-g, $smokey-topaz-b, 0.8);
}