Light Khaki

HEX: #F0E68C | Modern Palette

On White
1.28:1
FAIL
On Black
16.40:1
PASS

Color Specifications

HEX
#F0E68C
RGB
240, 230, 140
HSL
54°, 76% ,74%
CMYK
0, 4, 42, 6

About Light Khaki

Light Khaki (#F0E68C) is a color with RGB(240, 230, 140) and HSL(54°, 76.9%, 74.5%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #8C96F0, which creates strong contrast. Its triadic palette includes #8CF0E6 and #E68CF0. The name comes from khākī (خاکی / खाकी) (Hindustani (Urdu/Hindi)).

  • HEX: #F0E68C
  • RGB: 240, 230, 140
  • HSL: 54°, 76.9%, 74.5%
  • Mood: Playful
  • Style: Warm
  • Use case: Text, Button, Accent
  • Complementary color: #8C96F0
  • Triadic colors: #8CF0E6, #E68CF0
  • The name comes from khākī (خاکی / खाकी) (Hindustani (Urdu/Hindi)).

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

Color Characteristics

Mood
Playful
Style
Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #E9E98C
Protanopia #E7E78C
Tritanopia #F8DDDD
Achromatopsia #E3E3E3

Frequently Asked Questions

Light Khaki (#F0E68C) is a color with RGB(240, 230, 140) and HSL(54°, 76.9%, 74.5%).

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

#F0E68C is suitable for Text, Button, Accent and works well with Warm styles.

#F0E68C is commonly associated with Playful.

The name Light Khaki is linked to khākī (خاکی / खाकी) from Hindustani (Urdu/Hindi), meaning dusty, dust-colored, earthy.

Name, History & Etymology

Origin Word khākī (خاکی / खाकी)
Meaning dusty, dust-colored, earthy
Language Hindustani (Urdu/Hindi)
First Recorded Use Mid-19th Century

History

The concept of 'khaki' as a uniform color originated in British India. Prior to this, European armies typically wore bright, conspicuous colors (e.g., British 'redcoats'). The practical need for less visible uniforms in the Indian subcontinent led to the adoption of locally dyed, dust-colored fabrics. The term 'khaki' quickly spread and was adopted by other armies worldwide, notably during the late 19th and early 20th centuries, becoming a standard for military fatigues. 'Light Khaki' specifically refers to a paler, often more yellow-toned variant of the original earthy brown, moving towards a sandy or even pale yellow-green hue, as exemplified by the hex code #f0e68c.

First Recorded Use

The term 'khaki' for the color was first adopted by the British Indian Army around 1848-1849 for their uniforms, specifically by the Corps of Guides, to provide camouflage in the dusty terrain of India. The specific shade 'Light Khaki' is a later descriptive refinement.

Cultural Associations

Khaki is strongly associated with military uniforms, adventure, safari, and utilitarian fashion. 'Light Khaki' often evokes a sense of casualness, outdoor activity, and a slightly vintage or classic aesthetic. It's a versatile neutral color frequently used in casual wear, workwear, and home decor. It can also be associated with natural, earthy tones and a sense of understated practicality.

Similar Named Colors

Flavescent #F7E98E ΔE 1.36
Flax #EEDC82 ΔE 2.93
Yellow (Crayola) #FCE883 ΔE 3.21
Buff #F0DC82 ΔE 3.33

Code Snippets

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

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

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #F0E68C,
        #8C96F0
    );
}

// SCSS variable
$light-khaki: #F0E68C;

// With RGB channels (useful for rgba() usage)
$light-khaki-r: 240;
$light-khaki-g: 230;
$light-khaki-b: 140;

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