Bazaar
HEX: #98777B | Modern Palette
Color Specifications
#98777B
152, 119, 123
352°, 21% ,59%
0, 21.71, 19.08, 40.39
About Bazaar
Bazaar (#98777B) is a color with RGB(152, 119, 123) and HSL(352.73°, 21.71%, 59.61%). In design, it fits Muted, Warm styles and is suitable for Text, Background, Border. Its complementary color is #779894, which creates strong contrast. Its triadic palette includes #7B9877 and #777B98. The name comes from bāzār (بازار) (Persian).
- HEX: #98777B
- RGB: 152, 119, 123
- HSL: 352.73°, 21.71%, 59.61%
- Style: Muted, Warm
- Use case: Text, Background, Border
- Complementary color: #779894
- Triadic colors: #7B9877, #777B98
- The name comes from bāzār (بازار) (Persian).
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 #98777B from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#82827A
#7B7B7B
#987878
#7F7F7F
Frequently Asked Questions
Name, History & Etymology
History
The word "bazaar" entered English through Italian (bazarro) and ultimately from Persian (bāzār). It refers to a marketplace, especially in Middle Eastern countries. Historically, bazaars were not just places for trade but also social and cultural hubs. They often consisted of a series of shops or stalls, sometimes covered, and were central to urban life. The concept of a bazaar has existed for millennia, evolving from ancient trading posts.
First Recorded Use
15th Century
Cultural Associations
Bazaars are iconic cultural institutions in many parts of the world, particularly the Middle East, North Africa, and South Asia. They are known for their vibrant atmosphere, diverse goods (spices, textiles, jewelry, crafts), and the art of haggling. Beyond commerce, bazaars often serve as important social gathering places, where news is exchanged and community bonds are strengthened. Many historic bazaars, like the Grand Bazaar in Istanbul or the Khan el-Khalili in Cairo, are major tourist attractions and continue to function as vital commercial centers.
Code Snippets
/* Background */
.element {
background-color: #98777B;
}
/* Text */
.element {
color: #98777B;
}
/* Border */
.element {
border: 1px solid #98777B;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#98777B,
#82AEA9
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#98777B,
#82AEA9
);
}
// SCSS variable
$bazaar: #98777B;
// With RGB channels (useful for rgba() usage)
$bazaar-r: 152;
$bazaar-g: 119;
$bazaar-b: 123;
// Usage
.element {
background-color: $bazaar;
color: rgba($bazaar-r, $bazaar-g, $bazaar-b, 0.8);
}