Harlequin
HEX: #3FFF00 | Modern Palette
Color Specifications
#3FFF00
63, 255, 0
105°, 100% ,100%
75.29, 0, 100, 0
About Harlequin
Harlequin (#3FFF00) is a color with RGB(63, 255, 0) and HSL(105.18°, 100%, 100%). It is commonly associated with Playful moods. In design, it fits Neon, Cool styles and is suitable for Text, Button, Background. Its complementary color is #C000FF, which creates strong contrast. Its triadic palette includes #003FFF and Electric Crimson (#FF003F). The name comes from Arlecchino (Italian).
- HEX: #3FFF00
- RGB: 63, 255, 0
- HSL: 105.18°, 100%, 100%
- Mood: Playful
- Style: Neon, Cool
- Use case: Text, Button, Background
- Complementary color: #C000FF
- Triadic colors: #003FFF, Electric Crimson (#FF003F)
- The name comes from Arlecchino (Italian).
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 #3FFF00 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The character of Arlecchino (Harlequin in English) originated in Bergamo, Italy, as a zanni (servant) character in the Commedia dell'arte. His costume was originally a simple peasant's outfit, but over time it evolved into the iconic diamond-patterned, multi-colored suit. He is typically portrayed as agile, acrobatic, and a trickster, often carrying a 'slapstick' (batocchio). The character spread throughout Europe, particularly influencing French pantomime and English harlequinade. The name 'Harlequin' itself is thought to derive from 'Hellequin,' a demonic figure in medieval French passion plays and folklore.
First Recorded Use
The character of Arlecchino emerged in Italy in the mid-16th century.
Cultural Associations
Harlequin is one of the most recognizable figures from the Commedia dell'arte, representing a blend of wit, physical comedy, and sometimes a touch of pathos. His distinctive costume has inspired fashion, art, and design, with the 'harlequin pattern' (diamond checks) being a common motif. In later adaptations, particularly in England, Harlequin became a magical figure, able to transform scenes with a touch of his bat. The character often represents the common person, using cunning to outsmart masters or rivals.
Code Snippets
/* Background */
.element {
background-color: #3FFF00;
}
/* Text */
.element {
color: #3FFF00;
}
/* Border */
.element {
border: 1px solid #3FFF00;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#3FFF00,
#FFFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#3FFF00,
#FFFFFF
);
}
// SCSS variable
$harlequin: #3FFF00;
// With RGB channels (useful for rgba() usage)
$harlequin-r: 63;
$harlequin-g: 255;
$harlequin-b: 0;
// Usage
.element {
background-color: $harlequin;
color: rgba($harlequin-r, $harlequin-g, $harlequin-b, 0.8);
}