Kombu Green

HEX: #354230 | Modern Palette

On White
10.64:1
PASS
On Black
1.97:1
FAIL

Color Specifications

HEX
#354230
RGB
53, 66, 48
HSL
103°, 27% ,25%
CMYK
19.7, 0, 27.27, 74.12

About Kombu Green

Kombu Green (#354230) is a color with RGB(53, 66, 48) and HSL(103.33°, 27.27%, 25.88%). It is commonly associated with Calm, Earthy moods. In design, it fits Muted, Cool styles and is suitable for Text, Border, Print. Its complementary color is #3D3042, which creates strong contrast. Its triadic palette includes #303542 and #423035. The name comes from 昆布 (kombu) (Japanese).

  • HEX: #354230
  • RGB: 53, 66, 48
  • HSL: 103.33°, 27.27%, 25.88%
  • Mood: Calm, Earthy
  • Style: Muted, Cool
  • Use case: Text, Border, Print
  • Complementary color: #3D3042
  • Triadic colors: #303542, #423035
  • The name comes from 昆布 (kombu) (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 #354230 from deepest shade to lightest tint.

Color Characteristics

Mood
Calm Earthy
Style
Muted Cool
Use case
Text Border Print

Accessibility Simulation

Deuteranopia #3F3F30
Protanopia #414130
Tritanopia #384040
Achromatopsia #3E3E3E

Frequently Asked Questions

Kombu Green (#354230) is a color with RGB(53, 66, 48) and HSL(103.33°, 27.27%, 25.88%).

#354230 pairs strongly with #3D3042 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#354230 is suitable for Text, Border, Print and works well with Muted, Cool styles.

#354230 is commonly associated with Calm, Earthy.

The name Kombu Green is linked to 昆布 (kombu) from Japanese, meaning a type of edible kelp.

Name, History & Etymology

Origin Word 昆布 (kombu)
Meaning a type of edible kelp
Language Japanese
First Recorded Use Modern (20th-21st century)

History

The term 'Kombu Green' is a modern descriptive color name, combining the Japanese word for a specific type of edible kelp (kombu) with the English word 'green'. Kombu itself has a long history in Japanese cuisine and culture, dating back centuries. It is a staple ingredient, particularly for making dashi (broth). The color of dried kombu can range from a dark, almost blackish-green to a more muted, earthy green. The specific hex code #354230 suggests a deep, somewhat desaturated, and earthy green, reminiscent of the dried or rehydrated kelp. This color name likely emerged in design, fashion, or paint industries to evoke a natural, organic, and perhaps subtly Asian-inspired aesthetic.

First Recorded Use

Likely late 20th or early 21st century, as a descriptive color name.

Cultural Associations

Kombu is a highly significant ingredient in Japanese cuisine, forming the base of dashi, which is fundamental to many dishes like miso soup, noodle broths, and hot pots. It is also eaten directly, often simmered or pickled. The color 'Kombu Green' therefore carries connotations of naturalness, umami, health, and traditional Japanese culinary arts. It evokes the ocean, sustainability, and a connection to nature. In a broader sense, it aligns with trends favoring natural and earthy tones in design.

Similar Named Colors

Rifle Green #414833 ΔE 3.75
Rifle Green #444C38 ΔE 4.32
Black Leather Jacket #253529 ΔE 5.09
Gray Asparagus #465945 ΔE 7.65

Code Snippets

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

/* Text */
.element {
    color: #354230;
}

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #354230,
        #4A3054
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #354230,
        #4A3054
    );
}

// SCSS variable
$kombu-green: #354230;

// With RGB channels (useful for rgba() usage)
$kombu-green-r: 53;
$kombu-green-g: 66;
$kombu-green-b: 48;

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