Chartreuse (traditional)
HEX: #DFFF00 | Modern Palette
Color Specifications
#DFFF00
223, 255, 0
67°, 100% ,100%
12.55, 0, 100, 0
About Chartreuse (traditional)
Chartreuse (traditional) (#DFFF00) is a color with RGB(223, 255, 0) and HSL(67.53°, 100%, 100%). 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 #2000FF, which creates strong contrast. Its triadic palette includes #00DFFF and #FF00DF. The name comes from Chartreuse (French).
- HEX: #DFFF00
- RGB: 223, 255, 0
- HSL: 67.53°, 100%, 100%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #2000FF
- Triadic colors: #00DFFF, #FF00DF
- The name comes from Chartreuse (French).
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 #DFFF00 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The Chartreuse liqueur, from which the color takes its name, has a long and secretive history. Its recipe is said to have been given to the monks in 1605, but it wasn't until 1737 that they perfected and began commercial production. The liqueur comes in two main varieties: green (verte) and yellow (jaune). The color 'Chartreuse' specifically refers to the vibrant, yellowish-green hue of the green Chartreuse liqueur. As a named color in fashion and design, it saw particular popularity in the late 19th and early 20th centuries, and again in various retro revivals.
First Recorded Use
The color name 'Chartreuse' is derived from the green-yellow liqueur of the same name, which was first produced by the Carthusian monks at the Grande Chartreuse monastery in France starting in 1737. The color itself, as a named hue, likely gained prominence later, but its association with the liqueur dates back to its invention.
Cultural Associations
Chartreuse is often associated with nature, vibrancy, and sometimes a sense of the exotic or unusual due to its striking appearance. In fashion, it can be seen as bold and attention-grabbing. It has also been used in various artistic movements to evoke specific moods or themes. Its connection to the liqueur also gives it a subtle association with tradition, craftsmanship, and a certain mystique.
Code Snippets
/* Background */
.element {
background-color: #DFFF00;
}
/* Text */
.element {
color: #DFFF00;
}
/* Border */
.element {
border: 1px solid #DFFF00;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#DFFF00,
#FFFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#DFFF00,
#FFFFFF
);
}
// SCSS variable
$chartreuse-(traditional): #DFFF00;
// With RGB channels (useful for rgba() usage)
$chartreuse-(traditional)-r: 223;
$chartreuse-(traditional)-g: 255;
$chartreuse-(traditional)-b: 0;
// Usage
.element {
background-color: $chartreuse-(traditional);
color: rgba($chartreuse-(traditional)-r, $chartreuse-(traditional)-g, $chartreuse-(traditional)-b, 0.8);
}