Flirt
HEX: #A2006D | Modern Palette
Color Specifications
#A2006D
162, 0, 109
319°, 100% ,63%
0, 100, 32.72, 36.47
About Flirt
Flirt (#A2006D) is a color with RGB(162, 0, 109) and HSL(319.63°, 100%, 63.53%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #00A235, which creates strong contrast. Its triadic palette includes #6DA200 and #006DA2. The name comes from fleureter (French).
- HEX: #A2006D
- RGB: 162, 0, 109
- HSL: 319.63°, 100%, 63.53%
- Mood: Energetic, Bold
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #00A235
- Triadic colors: #6DA200, #006DA2
- The name comes from fleureter (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 #A2006D from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The English word "flirt" is believed to have originated from the French word "fleureter," meaning "to touch lightly" or "to dart from flower to flower." This imagery suggests a light, playful, and non-committal interaction, much like a bee flitting between flowers. In English, the word initially appeared in the 16th century, often referring to a quick, light movement or a sudden jerk. For example, one might 'flirt' a fan open. By the 17th century, it began to take on the meaning of a playful, amorous interaction, particularly one that was not serious or intended for marriage. The noun form, referring to a person who flirts, emerged in the 18th century. Some theories also suggest an onomatopoeic origin, mimicking the sound of a quick, light movement, which could have contributed to its adoption and meaning in English.
First Recorded Use
1530s (in French), 1560s (in English, referring to a 'light touch')
Cultural Associations
Flirting is a widespread human social behavior, often used to signal romantic or sexual interest in a playful or indirect manner. Its cultural manifestations vary significantly across different societies and historical periods. In Western cultures, flirting often involves a combination of verbal cues (compliments, teasing), non-verbal cues (eye contact, smiling, touching), and body language (open posture, leaning in). The line between friendly interaction and flirting can be subtle and is often context-dependent. Historically, the perception and acceptance of flirting have changed. In some conservative societies or historical periods, overt flirting by women was considered inappropriate or even scandalous. Today, while still subject to social norms, it is generally seen as a normal part of social interaction and courtship, though the intent and boundaries are crucial for respectful engagement.
Code Snippets
/* Background */
.element {
background-color: #A2006D;
}
/* Text */
.element {
color: #A2006D;
}
/* Border */
.element {
border: 1px solid #A2006D;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#A2006D,
#45FF82
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#A2006D,
#45FF82
);
}
// SCSS variable
$flirt: #A2006D;
// With RGB channels (useful for rgba() usage)
$flirt-r: 162;
$flirt-g: 0;
$flirt-b: 109;
// Usage
.element {
background-color: $flirt;
color: rgba($flirt-r, $flirt-g, $flirt-b, 0.8);
}