Mikado Yellow
HEX: #FFC40C | Modern Palette
Color Specifications
#FFC40C
255, 196, 12
45°, 100% ,52%
0, 23, 95, 0
About Mikado Yellow
Mikado Yellow (#FFC40C) is a color with RGB(255, 196, 12) and HSL(45.4°, 100%, 52.4%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #0C47FF, which creates strong contrast. Its triadic palette includes #0CFFC4 and #C40CFF. The name comes from 帝 (mikado) (Japanese).
- HEX: #FFC40C
- RGB: 255, 196, 12
- HSL: 45.4°, 100%, 52.4%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #0C47FF
- Triadic colors: #0CFFC4, #C40CFF
- The name comes from 帝 (mikado) (Japanese).
Live Components
Color Palettes
Mikado Yellow #FFC40C 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
Mikado Yellow #FFC40C pairs with #0C47FF as its complementary color, and #0CFFC4 and #C40CFF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The term 'Mikado' itself refers to the Emperor of Japan. Historically, yellow and gold were colors strongly associated with the imperial family in Japan, as they were in many other cultures (e.g., Chinese emperors). This association is ancient, with specific shades of yellow often reserved for imperial use. The naming of a specific color 'Mikado Yellow' in Western contexts likely capitalized on the exoticism and imperial grandeur associated with the term 'Mikado' during a period when Japan was becoming more known globally. It's a bright, rich yellow, often described as a golden yellow or a deep daffodil yellow, reflecting a sense of regality and vibrancy.
First Recorded Use
The specific color 'Mikado Yellow' as a named shade likely emerged in the early 20th century, possibly around the time of the popular operetta 'The Mikado' (1885) by Gilbert and Sullivan, which brought the term 'Mikado' into wider Western consciousness. However, the association of yellow with the Japanese imperial family predates this significantly.
Cultural Associations
In Japan, yellow (黄, ki) has various cultural meanings, including prosperity, courage, and the sacred. While not exclusively imperial, certain shades were indeed reserved for the emperor. The Western naming 'Mikado Yellow' specifically evokes this imperial connection. The color is often seen as cheerful, energetic, and attention-grabbing. It's a strong, pure yellow, not muted or pastel.
Code Snippets
/* Background */
.element {
background-color: #FFC40C;
}
/* Text */
.element {
color: #FFC40C;
}
/* Border */
.element {
border: 1px solid #FFC40C;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFC40C,
#0C47FF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFC40C,
#0C47FF
);
}
// SCSS variable
$mikado-yellow: #FFC40C;
// With RGB channels (useful for rgba() usage)
$mikado-yellow-r: 255;
$mikado-yellow-g: 196;
$mikado-yellow-b: 12;
// Usage
.element {
background-color: $mikado-yellow;
color: rgba($mikado-yellow-r, $mikado-yellow-g, $mikado-yellow-b, 0.8);
}