Light Khaki
HEX: #F0E68C | Modern Palette
Color Specifications
#F0E68C
240, 230, 140
54°, 76% ,74%
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
Color Palettes
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.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}