Smoke

HEX: #738276 | Modern Palette

On White
4.05:1
FAIL
On Black
5.18:1
PASS

Color Specifications

HEX
#738276
RGB
115, 130, 118
HSL
132°, 11% ,50%
CMYK
11.54, 0, 9.23, 49.02

About Smoke

Smoke (#738276) is a color with RGB(115, 130, 118) and HSL(132°, 11.54%, 50.98%). It is commonly associated with Calm, Earthy moods. In design, it fits Muted, Cool styles and is suitable for Text, Background, Border. Its complementary color is #82737F, which creates strong contrast. Its triadic palette includes #767382 and #827673. The name comes from *smuk- (Proto-Germanic).

  • HEX: #738276
  • RGB: 115, 130, 118
  • HSL: 132°, 11.54%, 50.98%
  • Mood: Calm, Earthy
  • Style: Muted, Cool
  • Use case: Text, Background, Border
  • Complementary color: #82737F
  • Triadic colors: #767382, #827673
  • The name comes from *smuk- (Proto-Germanic).

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

Color Characteristics

Mood
Calm Earthy
Style
Muted Cool

Accessibility Simulation

Deuteranopia #7E7E76
Protanopia #808076
Tritanopia #758181
Achromatopsia #7E7E7E

Frequently Asked Questions

Smoke (#738276) is a color with RGB(115, 130, 118) and HSL(132°, 11.54%, 50.98%).

#738276 pairs strongly with #82737F as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#738276 is suitable for Text, Background, Border and works well with Muted, Cool styles.

#738276 is commonly associated with Calm, Earthy.

The name Smoke is linked to *smuk- from Proto-Germanic, meaning to smoke, to reek.

Name, History & Etymology

Origin Word *smuk-
Meaning to smoke, to reek
Language Proto-Germanic
First Recorded Use Old English

History

The word 'smoke' in English derives from the Old English 'smoca' (noun) and 'smocian' (verb). These, in turn, trace back to the Proto-Germanic root '*smuk-' meaning 'to smoke, to reek'. This root is also the source of similar words in other Germanic languages, such as Old Norse 'smokr', Middle Dutch 'smooc', and German 'Schmauch'. The sense of 'inhaling and exhaling the fumes of burning tobacco' emerged in the late 16th century, following the introduction of tobacco to Europe. Prior to this, 'smoke' primarily referred to the visible gaseous products of combustion in a general sense, or the act of producing such fumes (e.g., a fire smoking). The transitive verb 'to smoke (meat, fish)' meaning 'to cure by exposure to smoke' also developed around the same period.

First Recorded Use

c. 893 CE

Cultural Associations

Smoke has held significant cultural importance across various civilizations. In many ancient cultures, smoke from incense or sacrificial fires was believed to carry prayers or spirits to the heavens, acting as a mediator between the human and divine realms. Indigenous cultures often use smoke in purification rituals (smudging) with herbs like sage or cedar. The 'smoke signal' was a widespread form of long-distance communication. In modern culture, 'smoke' is heavily associated with tobacco and cannabis use, leading to public health campaigns and social debates. Phrases like 'where there's smoke, there's fire' reflect its role as an indicator or sign.

Similar Named Colors

Xanadu #738678 ΔE 2.07
Camouflage Green #78866B ΔE 5.84
AuroMetalSaurus #6E7F80 ΔE 6.55
Battleship Grey #848482 ΔE 9.37

Code Snippets

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

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

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #738276,
        #90748B
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #738276,
        #90748B
    );
}

// SCSS variable
$smoke: #738276;

// With RGB channels (useful for rgba() usage)
$smoke-r: 115;
$smoke-g: 130;
$smoke-b: 118;

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