Deep Koamaru
HEX: #333366 | Modern Palette
Color Specifications
#333366
51, 51, 102
240°, 50% ,40%
50, 50, 0, 60
About Deep Koamaru
Deep Koamaru (#333366) is a color with RGB(51, 51, 102) and HSL(240°, 50%, 40%). In design, it fits Cool styles and is suitable for Text, Button, Logo. Its complementary color is #666633, which creates strong contrast. Its triadic palette includes #663333 and #336633. The name comes from 小豆 (Japanese).
- HEX: #333366
- RGB: 51, 51, 102
- HSL: 240°, 50%, 40%
- Style: Cool
- Use case: Text, Button, Logo
- Complementary color: #666633
- Triadic colors: #663333, #336633
- The name comes from 小豆 (Japanese).
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 #333366 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color 'Koamaru' (小豆色) in Japanese refers to the reddish-brown color of adzuki beans. It's a traditional color that has been used for centuries in textiles, ceramics, and other arts. The 'Deep' prefix in 'Deep Koamaru' suggests a darker, more saturated version of this traditional color. Adzuki beans themselves have been cultivated in East Asia for thousands of years and are a staple in Japanese cuisine, often used in sweets (like anko, a sweet red bean paste). The color name directly reflects this common and culturally significant food item.
First Recorded Use
Likely much earlier, but color names became more formalized during the Edo period.
Cultural Associations
Adzuki beans (小豆, azuki or adzuki) are deeply ingrained in Japanese culture, used in a wide variety of traditional sweets (wagashi), mochi, and even savory dishes. The color 'Koamaru' evokes a sense of warmth, tradition, and natural earthiness. It's a subdued yet rich color, often associated with autumn and traditional Japanese aesthetics. The 'deep' variation would suggest a more formal or mature feel than a lighter adzuki bean color.
Code Snippets
/* Background */
.element {
background-color: #333366;
}
/* Text */
.element {
color: #333366;
}
/* Border */
.element {
border: 1px solid #333366;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#333366,
#999933
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#333366,
#999933
);
}
// SCSS variable
$deep-koamaru: #333366;
// With RGB channels (useful for rgba() usage)
$deep-koamaru-r: 51;
$deep-koamaru-g: 51;
$deep-koamaru-b: 102;
// Usage
.element {
background-color: $deep-koamaru;
color: rgba($deep-koamaru-r, $deep-koamaru-g, $deep-koamaru-b, 0.8);
}