Japanese Carmine

HEX: #9D2933 | Modern Palette

On White
7.50:1
PASS
On Black
2.80:1
FAIL

Color Specifications

HEX
#9D2933
RGB
157, 41, 51
HSL
354°, 73% ,61%
CMYK
0, 73.89, 67.52, 38.43

About Japanese Carmine

Japanese Carmine (#9D2933) is a color with RGB(157, 41, 51) and HSL(354.83°, 73.89%, 61.57%). It is commonly associated with Energetic, Playful moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #299D93, which creates strong contrast. Its triadic palette includes #339D29 and #29339D. The name comes from 臙脂色 (enji-iro) (Japanese).

  • HEX: #9D2933
  • RGB: 157, 41, 51
  • HSL: 354.83°, 73.89%, 61.57%
  • Mood: Energetic, Playful
  • Style: Vivid, Warm
  • Use case: Text, Button, Accent
  • Complementary color: #299D93
  • Triadic colors: #339D29, #29339D
  • The name comes from 臙脂色 (enji-iro) (Japanese).

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 #9D2933 from deepest shade to lightest tint.

Color Characteristics

Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #5F5F2D
Protanopia #434334
Tritanopia #9D2A2A
Achromatopsia #555555

Frequently Asked Questions

Japanese Carmine (#9D2933) is a color with RGB(157, 41, 51) and HSL(354.83°, 73.89%, 61.57%).

#9D2933 pairs strongly with #299D93 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#9D2933 is suitable for Text, Button, Accent and works well with Vivid, Warm styles.

#9D2933 is commonly associated with Energetic, Playful.

The name Japanese Carmine is linked to 臙脂色 (enji-iro) from Japanese, meaning Carmine color / Rouge color.

Name, History & Etymology

Origin Word 臙脂色 (enji-iro)
Meaning Carmine color / Rouge color
Language Japanese
First Recorded Use Heian period (794-1185)

History

The color 'enji-iro' in Japan traditionally referred to a deep red, often with a slight purplish or brownish undertone, derived from various natural sources. Historically, it was obtained from insects like cochineal (though not native to Japan, imported dyes were used) or from plant sources such as safflower (benibana) and madder. It was a highly valued color, especially for dyeing silk kimonos, cosmetics (like lipstick and rouge), and pigments for painting. During the Edo period, the range of red dyes expanded, and 'enji-iro' remained a popular and significant color, often associated with beauty and luxury. The modern hexadecimal #9d2933 represents a specific interpretation of this traditional color.

First Recorded Use

The color 'enji-iro' (carmine) has a long history in Japan, with its use for dyes and cosmetics dating back to ancient times. While the specific term 'Japanese Carmine' as a direct translation might be a modern Western descriptor for a particular shade, the underlying color 'enji-iro' was well-established by the Heian period, appearing in literature and art.

Cultural Associations

In Japanese culture, red colors, including carmine shades, hold significant meaning. They are often associated with vitality, passion, good fortune, and protection. 'Enji-iro' was particularly prominent in women's fashion and cosmetics, symbolizing elegance and allure. It was also used in traditional arts, textiles, and ceramics. The depth and richness of the color made it a favorite for formal attire and ceremonial objects. It can evoke a sense of classic Japanese aesthetics.

Similar Named Colors

Vivid Burgundy #9F1D35 ΔE 2.62
Brown #A52A2A ΔE 4.05
Alabama Crimson #AF002A ΔE 4.10
Deep Carmine #A9203E ΔE 4.33

Code Snippets

/* Background */
.element {
    background-color: #9D2933;
}

/* Text */
.element {
    color: #9D2933;
}

/* Border */
.element {
    border: 1px solid #9D2933;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #9D2933,
        #55E5D9
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #9D2933,
        #55E5D9
    );
}

// SCSS variable
$japanese-carmine: #9D2933;

// With RGB channels (useful for rgba() usage)
$japanese-carmine-r: 157;
$japanese-carmine-g: 41;
$japanese-carmine-b: 51;

// Usage
.element {
    background-color: $japanese-carmine;
    color: rgba($japanese-carmine-r, $japanese-carmine-g, $japanese-carmine-b, 0.8);
}