Field Drab

HEX: #6C541E | Modern Palette

On White
7.18:1
PASS
On Black
2.92:1
FAIL

Color Specifications

HEX
#6C541E
RGB
108, 84, 30
HSL
41°, 72% ,42%
CMYK
0, 22.22, 72.22, 57.65

About Field Drab

Field Drab (#6C541E) is a color with RGB(108, 84, 30) and HSL(41.54°, 72.22%, 42.35%). It is commonly associated with Energetic moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #1E366C, which creates strong contrast. Its triadic palette includes #1E6C54 and #541E6C. The name comes from Field Drab (English).

  • HEX: #6C541E
  • RGB: 108, 84, 30
  • HSL: 41.54°, 72.22%, 42.35%
  • Mood: Energetic
  • Style: Vivid, Warm
  • Use case: Text, Button, Accent
  • Complementary color: #1E366C
  • Triadic colors: #1E6C54, #541E6C
  • The name comes from Field Drab (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 #6C541E from deepest shade to lightest tint.

Color Characteristics

Mood
Energetic
Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #5C5C1C
Protanopia #57571E
Tritanopia #6F4F4F
Achromatopsia #575757

Frequently Asked Questions

Field Drab (#6C541E) is a color with RGB(108, 84, 30) and HSL(41.54°, 72.22%, 42.35%).

#6C541E pairs strongly with #1E366C as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#6C541E is commonly associated with Energetic.

The name Field Drab is linked to Field Drab from English, meaning A dull, yellowish-brown color reminiscent of dry fields or military uniforms..

Name, History & Etymology

Origin Word Field Drab
Meaning A dull, yellowish-brown color reminiscent of dry fields or military uniforms.
Language English
First Recorded Use Early 20th Century

History

The term 'Field Drab' emerged in the early 20th century, specifically gaining prominence around World War I. 'Drab' itself has been used to describe dull, light brown colors since the 17th century, often associated with plain or uninteresting appearances. The addition of 'Field' explicitly linked it to military contexts, referring to the color of uniforms designed for camouflage in natural, often dry or earthy environments. It was officially adopted as a color standard by various militaries, including the U.S. Army, for its effectiveness in blending with terrain. Its use continued through World War II and beyond, though specific shades and names evolved.

First Recorded Use

1912

Cultural Associations

Culturally, 'Field Drab' is strongly associated with military uniforms, utility, and practicality. It evokes images of wartime, outdoor activities, and ruggedness. While not a color typically chosen for its aesthetic beauty in fashion, it is valued for its functionality and ability to recede into the background. It can also be seen in workwear and outdoor gear, reflecting its utilitarian roots. The term 'drab' itself carries connotations of dullness or lack of vibrancy, which is inherent in the color's purpose.

Similar Named Colors

Donkey Brown #664C28 ΔE 5.45
Antique Bronze #665D1E ΔE 6.61
Grizzly #885818 ΔE 8.44

Code Snippets

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

/* Text */
.element {
    color: #6C541E;
}

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #6C541E,
        #1E4EBA
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #6C541E,
        #1E4EBA
    );
}

// SCSS variable
$field-drab: #6C541E;

// With RGB channels (useful for rgba() usage)
$field-drab-r: 108;
$field-drab-g: 84;
$field-drab-b: 30;

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