Bazaar

HEX: #98777B | Modern Palette

On White
3.99:1
FAIL
On Black
5.26:1
PASS

Color Specifications

HEX
#98777B
RGB
152, 119, 123
HSL
352°, 21% ,59%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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

Mood
Style
Muted Warm

Accessibility Simulation

Deuteranopia #82827A
Protanopia #7B7B7B
Tritanopia #987878
Achromatopsia #7F7F7F

Frequently Asked Questions

Bazaar (#98777B) is a color with RGB(152, 119, 123) and HSL(352.73°, 21.71%, 59.61%).

#98777B pairs strongly with #779894 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#98777B is suitable for Text, Background, Border and works well with Muted, Warm styles.

The name Bazaar is linked to bāzār (بازار) from Persian, meaning market, marketplace.

Name, History & Etymology

Origin Word bāzār (بازار)
Meaning market, marketplace
Language Persian
First Recorded Use Late Middle English

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.

Similar Named Colors

Mountbatten Pink #997A8D ΔE 6.15
Cinereous #98817B ΔE 6.79
Copper Rose #996666 ΔE 7.35
Dark Chestnut #986960 ΔE 8.19

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);
}