Lemon Curry

HEX: #CCA01D | Modern Palette

On White
2.44:1
FAIL
On Black
8.61:1
PASS

Color Specifications

HEX
#CCA01D
RGB
204, 160, 29
HSL
44°, 85% ,80%
CMYK
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

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

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #AEAE13
Protanopia #A6A61F
Tritanopia #D39797
Achromatopsia #A6A6A6

Frequently Asked Questions

Lemon Curry (#CCA01D) is a color with RGB(204, 160, 29) and HSL(44.91°, 85.78%, 80%).

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

#CCA01D is suitable for Text, Button, Background and works well with Neon, Warm styles.

#CCA01D is commonly associated with Playful.

The name Lemon Curry is linked to Lemon Curry from English (compound), meaning A curry dish flavored with lemon or lime juice, zest, or leaves..

Name, History & Etymology

Origin Word Lemon Curry
Meaning A curry dish flavored with lemon or lime juice, zest, or leaves.
Language English (compound)
First Recorded Use Late 20th Century

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.

Similar Named Colors

Satin Sheen Gold #CBA135 ΔE 2.03
Vivid Amber #CC9900 ΔE 2.55
Goldenrod #DAA520 ΔE 3.04
Gold (metallic) #D4AF37 ΔE 4.38

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);
}