Russian Green

HEX: #679267 | Modern Palette

On White
3.57:1
FAIL
On Black
5.88:1
PASS

Color Specifications

HEX
#679267
RGB
103, 146, 103
HSL
120°, 29% ,57%
CMYK
29.45, 0, 29.45, 42.75

About Russian Green

Russian Green (#679267) is a color with RGB(103, 146, 103) and HSL(120°, 29.45%, 57.25%). 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 #926792, which creates strong contrast. Its triadic palette includes #676792 and #926767. The name comes from Russian Green (English).

  • HEX: #679267
  • RGB: 103, 146, 103
  • HSL: 120°, 29.45%, 57.25%
  • Mood: Calm, Earthy
  • Style: Muted, Cool
  • Use case: Text, Border, Print
  • Complementary color: #926792
  • Triadic colors: #676792, #926767
  • The name comes from Russian Green (English).

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

Color Characteristics

Mood
Calm Earthy
Style
Muted Cool
Use case
Text Border Print

Accessibility Simulation

Deuteranopia #878768
Protanopia #8E8E67
Tritanopia #6E8D8D
Achromatopsia #878787

Frequently Asked Questions

Russian Green (#679267) is a color with RGB(103, 146, 103) and HSL(120°, 29.45%, 57.25%).

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

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

#679267 is commonly associated with Calm, Earthy.

The name Russian Green is linked to Russian Green from English, meaning A specific shade of green, often associated with military uniforms or natural landscapes in Russia..

Name, History & Etymology

Origin Word Russian Green
Meaning A specific shade of green, often associated with military uniforms or natural landscapes in Russia.
Language English
First Recorded Use Late 19th - Early 20th Century

History

The color 'Russian Green' is not a naturally occurring pigment with a singular historical origin like some ancient dyes. Instead, it's a descriptive color name that emerged to categorize a particular shade of green. Its association with Russia likely stems from several factors: 1. **Military Uniforms:** A common and enduring association is with the uniforms of the Imperial Russian Army and later the Soviet Army. These uniforms often featured drab, olive, or dark green shades for camouflage and practicality. The specific shade varied over time and branches, but a 'Russian Green' became a generalized term for these military greens. 2. **Natural Landscape:** Russia's vast forests and taiga regions are characterized by various shades of green, and the term might also evoke the natural, often muted, greens of the Russian landscape. 3. **Art and Design:** In art and design, 'Russian Green' might be used to evoke a certain aesthetic or historical period, particularly when depicting Russian subjects or styles. The hexadecimal code #679267 represents a specific interpretation of 'Russian Green,' which is a muted, somewhat desaturated green with a hint of grey or brown, fitting the military and natural landscape associations.

First Recorded Use

The exact first recorded use is difficult to pinpoint, but the term gained traction as specific color names became more standardized, particularly in military and fashion contexts. It likely emerged as a descriptive term before becoming a formalized color name.

Cultural Associations

**Military Symbolism:** Strongly linked to the Russian and Soviet military, evoking images of uniforms, equipment, and historical conflicts. **National Identity:** Can subtly contribute to a sense of Russian national identity, especially when used in contexts related to nature, history, or traditional design. **Practicality and Camouflage:** The muted nature of this green suggests practicality and camouflage, reflecting its historical use in military contexts. **Artistic Representation:** Used in art and literature to set a mood or depict scenes related to Russia, often conveying a sense of vastness, resilience, or solemnity.

Similar Named Colors

Sea Green #2E8B57 ΔE 8.25
May Green #4C9141 ΔE 8.34
Camouflage Green #78866B ΔE 8.52
Asparagus #87A96B ΔE 9.38

Code Snippets

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

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

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #679267,
        #B272B2
    );
}

// SCSS variable
$russian-green: #679267;

// With RGB channels (useful for rgba() usage)
$russian-green-r: 103;
$russian-green-g: 146;
$russian-green-b: 103;

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