#EFCD7E Khaki
rgb(239, 205, 126)
Color conversions
- HEX
- #EFCD7E
- RGB
- rgb(239, 205, 126)
- RGBA
- rgba(239, 205, 126, 1)
- HSL
- hsl(42, 78%, 72%)
- HSV / HSB
- hsv(42, 47%, 94%)
- CMYK
- cmyk(0%, 14%, 47%, 6%)
Wide-gamut spaces
- XYZ
- xyz(61.196, 63.523, 28.772)
- LAB
- lab(83.72 1.94 43.58)
- LCH
- lch(83.72 43.63 87.46)
- OKLAB
- oklab(86.04% 0.0056 0.1052)
- OKLCH
- oklch(86.04% 0.1053 86.93)
- Nearest name
- Khaki
Shades, tints and tones
Color harmonies
The hue directly opposite on the color wheel. Maximum contrast, ideal for a single accent against a dominant brand color.
Neighbouring hues that share a temperature. The safest harmony for calm, cohesive interfaces.
Three hues evenly spaced 120 degrees apart. Vibrant and balanced — use one as dominant and the other two sparingly.
The complement split into two adjacent hues. Nearly the contrast of complementary with noticeably less tension.
Four hues at 90-degree intervals. A rich set for illustration, data visualisation, and category coding.
Two complementary pairs offset by 60 degrees. Gives two warm and two cool options in one system.
Similar colors
Opacity variations
#efcd7e1a
#efcd7e33
#efcd7e4d
#efcd7e66
#efcd7e80
#efcd7e99
#efcd7eb3
#efcd7ecc
#efcd7ee6
#efcd7eff
Accessibility and contrast
On white
1.53:1
Body text Fail · Large text Fail
On black
13.7:1
Body text AAA · Large text AA
White-on-color contrast is 1.53:1.
Color blindness preview
Protanopia
No red cones — ~1% of men
Protanomaly
Reduced red sensitivity — ~1% of men
Deuteranopia
No green cones — ~1% of men
Deuteranomaly
Reduced green sensitivity — ~5% of men
Tritanopia
No blue cones — very rare
Tritanomaly
Reduced blue sensitivity — very rare
Achromatopsia
No color perception — ~1 in 30,000
Achromatomaly
Partial color perception — rare
Meaning, psychology and brand usage
Friendly energy without red's alarm
Orange reads as enthusiastic and affordable. It converts well on calls to action because it is highly visible yet lacks red's threat association. At low saturation it becomes terracotta and shifts from playful to crafted and earthy.
Associated with harvest, warmth, and creativity in Western markets, and with sacred devotion in India where saffron carries religious weight.
The colour had no English name until the fruit arrived in the sixteenth century — before that it was 'geoluread', yellow-red. Modern brand orange owes its ubiquity to inexpensive azo pigments.
Strong for developer tools, logistics, and value-focused consumer brands. Pair with a dark neutral rather than another warm hue to avoid a Halloween reading.
Common industries: Technology, Logistics, Fitness, Construction, Family retail. Pairs well with deep teal for balance, off-black for contrast, sand for a natural palette.
Code exports
CSS
:root {
--color-khaki: #efcd7e;
--color-khaki-rgb: 239 205 126;
--color-khaki-hsl: 42 78% 72%;
--color-khaki-oklch: 86.04% 0.1053 86.93;
}
.element {
color: #efcd7e;
background-color: hsl(42, 78%, 72%);
border: 1px solid rgb(239 205 126 / 40%);
}SCSS
$khaki: #efcd7e;
$khaki-light: #f7e6bf;
$khaki-dark: #78673f;
.element {
color: $khaki;
background: rgba($khaki, 0.12);
&:hover {
color: darken($khaki, 8%);
}
}LESS
@khaki: #efcd7e;
@khaki-light: lighten(@khaki, 12%);
@khaki-dark: darken(@khaki, 12%);
.element {
color: @khaki;
background: fade(@khaki, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-khaki-50: #fcf5e5;
--color-khaki-100: #faf0d8;
--color-khaki-200: #f9ebcb;
--color-khaki-300: #f5e1b2;
--color-khaki-400: #f2d798;
--color-khaki-500: #efcd7e;
--color-khaki-600: #d7b971;
--color-khaki-700: #a79058;
--color-khaki-800: #78673f;
--color-khaki-900: #483e26;
}
/* Usage */
<div class="bg-khaki-500 text-khaki-50 ring-khaki-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#efcd7e]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$khaki: #efcd7e;
$primary: $khaki;
$theme-colors: map-merge($theme-colors, (
"khaki": $khaki
));
// Generates .text-khaki, .bg-khaki, .btn-khaki
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color khaki = Color(0xFFEFCD7E);
// As a MaterialColor swatch
const MaterialColor khakiSwatch = MaterialColor(0xFFEFCD7E, <int, Color>{
50: Color(0xFFFCF5E5),
100: Color(0xFFFAF0D8),
200: Color(0xFFF9EBCB),
300: Color(0xFFF5E1B2),
400: Color(0xFFF2D798),
500: Color(0xFFEFCD7E),
600: Color(0xFFD7B971),
700: Color(0xFFA79058),
800: Color(0xFF78673F),
900: Color(0xFF483E26),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #efcd7e — Khaki
static let khaki = Color(
red: 0.9373,
green: 0.8039,
blue: 0.4941
)
}
// UIKit
extension UIColor {
static let khaki = UIColor(
red: 0.9373,
green: 0.8039,
blue: 0.4941,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="khaki">#EFCD7E</color>
<color name="khaki_translucent">#80EFCD7E</color>
</resources>
<!-- Jetpack Compose -->
val Khaki = Color(0xFFEFCD7E)JavaScript
export const KHAKI = {
hex: "#efcd7e",
rgb: [239, 205, 126],
hsl: [42, 78, 72],
oklch: "oklch(86.04% 0.1053 86.93)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"khaki": {
"$type": "color",
"$value": "#efcd7e",
"$description": "Khaki — generated by ColorVerse AI"
}
}