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
Flirt #A2006D is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Flirt #A2006D pairs with #00A235 as its complementary color, and #6DA200 and #006DA2 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}