Chartreuse (traditional)

HEX: #DFFF00 | Modern Palette

On White
1.14:1
FAIL
On Black
18.44:1
PASS

Color Specifications

HEX
#DFFF00
RGB
223, 255, 0
HSL
67°, 100% ,100%
CMYK
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

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

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #F6F611
Protanopia #FCFC00
Tritanopia #F0F0F0
Achromatopsia #F0F0F0

Frequently Asked Questions

Chartreuse (traditional) (#DFFF00) is a color with RGB(223, 255, 0) and HSL(67.53°, 100%, 100%).

#DFFF00 pairs strongly with #2000FF as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#DFFF00 is commonly associated with Playful.

The name Chartreuse (traditional) is linked to Chartreuse from French, meaning Referring to the Grande Chartreuse monastery.

Name, History & Etymology

Origin Word Chartreuse
Meaning Referring to the Grande Chartreuse monastery
Language French
First Recorded Use 18th Century

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.

Similar Named Colors

Lemon Lime #E3FF00 ΔE 0.72
Fluorescent Yellow #CCFF00 ΔE 3.20
Lime #BFFF00 ΔE 5.18
Lemon Glacier #FDFF00 ΔE 5.72

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