Lemon Curry
HEX: #CCA01D | Modern Palette
Color Specifications
#CCA01D
204, 160, 29
44°, 85% ,80%
0, 21.57, 85.78, 20
About Lemon Curry
Lemon Curry (#CCA01D) is a color with RGB(204, 160, 29) and HSL(44.91°, 85.78%, 80%). It is commonly associated with Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Background. Its complementary color is #1D49CC, which creates strong contrast. Its triadic palette includes #1DCCA0 and #A01DCC. The name comes from Lemon Curry (English (compound)).
- HEX: #CCA01D
- RGB: 204, 160, 29
- HSL: 44.91°, 85.78%, 80%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #1D49CC
- Triadic colors: #1DCCA0, #A01DCC
- The name comes from Lemon Curry (English (compound)).
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 #CCA01D from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The concept of adding citrus to savory dishes, including those with spices, is ancient and global. Lemons (and limes) are native to Asia and have been used in Indian and Southeast Asian cooking for centuries to add tanginess and brightness. Curry, as a term, was popularized by the British in India to describe a variety of spiced, saucy dishes. The specific combination 'lemon curry' likely emerged as a descriptive term for curries that prominently feature lemon as a flavor, distinguishing them from coconut-based, tomato-based, or other types of curries. Its popularity grew as fusion cuisine and a wider appreciation for regional Indian and Thai dishes spread globally.
First Recorded Use
While the individual components 'lemon' and 'curry' have much older origins, the specific compound 'lemon curry' as a distinct dish name or flavor profile likely gained prominence in English-speaking culinary contexts in the late 20th century, particularly with the rise of diverse Asian cuisines in Western countries. Earlier uses might exist in specific regional Indian or Southeast Asian languages, but the English compound's widespread use is more recent.
Cultural Associations
Lemon curry is a common preparation in various South and Southeast Asian cuisines, particularly in Southern India (e.g., Lemon Rice, Lemon Rasam, some fish curries) and Thailand (where lime is more prevalent, as in Tom Yum or green curries). The 'lemon' aspect provides a refreshing, tangy counterpoint to the richness of coconut milk or the heat of chilies, making it a popular choice, especially in warmer climates. It's often associated with lighter, brighter flavor profiles compared to heavier, creamier curries.
Code Snippets
/* Background */
.element {
background-color: #CCA01D;
}
/* Text */
.element {
color: #CCA01D;
}
/* Border */
.element {
border: 1px solid #CCA01D;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#CCA01D,
#A0B6F8
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#CCA01D,
#A0B6F8
);
}
// SCSS variable
$lemon-curry: #CCA01D;
// With RGB channels (useful for rgba() usage)
$lemon-curry-r: 204;
$lemon-curry-g: 160;
$lemon-curry-b: 29;
// Usage
.element {
background-color: $lemon-curry;
color: rgba($lemon-curry-r, $lemon-curry-g, $lemon-curry-b, 0.8);
}