Bitter Lemon
HEX: #CAE00D | Modern Palette
Color Specifications
#CAE00D
202, 224, 13
66°, 94% ,87%
9.82, 0, 94.2, 12.16
About Bitter Lemon
Bitter Lemon (#CAE00D) is a color with RGB(202, 224, 13) and HSL(66.26°, 94.2%, 87.84%). 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 #230DE0, which creates strong contrast. Its triadic palette includes #0DCAE0 and #E00DCA. The name comes from Bitter Lemon (English).
- HEX: #CAE00D
- RGB: 202, 224, 13
- HSL: 66.26°, 94.2%, 87.84%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #230DE0
- Triadic colors: #0DCAE0, #E00DCA
- The name comes from Bitter Lemon (English).
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 #CAE00D from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
While the concept of bitter drinks with citrus has ancient roots (e.g., medicinal tonics), the specific commercial product 'Bitter Lemon' emerged as part of the growing soft drink industry. Quinine, originally used as an anti-malarial, was incorporated into tonic water and later into bitter lemon for its distinctive taste. The addition of lemon provided a refreshing counterpoint to the bitterness. Schweppes is widely credited with popularizing the drink globally after its launch in 1957.
First Recorded Use
The term 'Bitter Lemon' as a specific beverage name became popular in the mid-20th century, particularly with the introduction of commercial brands like Schweppes Bitter Lemon in the 1950s.
Cultural Associations
Bitter Lemon is often consumed as a standalone refreshing drink, especially in warmer climates, or used as a mixer in alcoholic cocktails, similar to tonic water. It's particularly popular in Europe and parts of the Commonwealth. Its slightly more complex and less sweet profile distinguishes it from standard lemonades or sodas.
Code Snippets
/* Background */
.element {
background-color: #CAE00D;
}
/* Text */
.element {
color: #CAE00D;
}
/* Border */
.element {
border: 1px solid #CAE00D;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#CAE00D,
#C9C3FD
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#CAE00D,
#C9C3FD
);
}
// SCSS variable
$bitter-lemon: #CAE00D;
// With RGB channels (useful for rgba() usage)
$bitter-lemon-r: 202;
$bitter-lemon-g: 224;
$bitter-lemon-b: 13;
// Usage
.element {
background-color: $bitter-lemon;
color: rgba($bitter-lemon-r, $bitter-lemon-g, $bitter-lemon-b, 0.8);
}