Ming
HEX: #36747D | Modern Palette
Color Specifications
#36747D
54, 116, 125
187°, 56% ,49%
56.8, 7.2, 0, 50.98
About Ming
Ming (#36747D) is a color with RGB(54, 116, 125) and HSL(187.61°, 56.8%, 49.02%). In design, it fits Cool styles and is suitable for Text, Button, Logo. Its complementary color is #7D3F36, which creates strong contrast. Its triadic palette includes #7D3674 and #747D36. The name comes from 明 (Chinese).
- HEX: #36747D
- RGB: 54, 116, 125
- HSL: 187.61°, 56.8%, 49.02%
- Style: Cool
- Use case: Text, Button, Logo
- Complementary color: #7D3F36
- Triadic colors: #7D3674, #747D36
- The name comes from 明 (Chinese).
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 #36747D from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The character '明' is a compound ideograph (會意字) formed by combining '日' (rì, sun) and '月' (yuè, moon), symbolizing brightness. It has been a fundamental character in Chinese language and culture for thousands of years. It is famously part of the Ming Dynasty (明朝, Míng Cháo), which ruled China from 1368 to 1644. The dynasty's name itself, 'Ming', means 'bright' or 'brilliant', reflecting a period of significant cultural and economic flourishing.
First Recorded Use
The character '明' has been in use for millennia, appearing in oracle bone script and bronze inscriptions from the Shang and Zhou Dynasties.
Cultural Associations
Beyond its literal meaning of brightness, 'Ming' carries connotations of enlightenment, understanding, and wisdom in Chinese culture. It is a common component in personal names, place names, and philosophical concepts. The Ming Dynasty is remembered for its Great Wall construction, the voyages of Zheng He, and its distinctive porcelain and art. The color #36747d, a deep teal or dark cyan, does not have a direct, traditional association with the character 'Ming' itself, but could be chosen for its perceived 'clarity' or 'depth' in a modern context.
Code Snippets
/* Background */
.element {
background-color: #36747D;
}
/* Text */
.element {
color: #36747D;
}
/* Border */
.element {
border: 1px solid #36747D;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#36747D,
#C44836
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#36747D,
#C44836
);
}
// SCSS variable
$ming: #36747D;
// With RGB channels (useful for rgba() usage)
$ming-r: 54;
$ming-g: 116;
$ming-b: 125;
// Usage
.element {
background-color: $ming;
color: rgba($ming-r, $ming-g, $ming-b, 0.8);
}