Flirt

HEX: #A2006D | Modern Palette

On White
7.62:1
PASS
On Black
2.76:1
FAIL

Color Specifications

HEX
#A2006D
RGB
162, 0, 109
HSL
319°, 100% ,63%
CMYK
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

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

Color Characteristics

Style
Vivid Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #5B5B6A
Protanopia #38386E
Tritanopia #9E2626
Achromatopsia #545454

Frequently Asked Questions

Flirt (#A2006D) is a color with RGB(162, 0, 109) and HSL(319.63°, 100%, 63.53%).

#A2006D pairs strongly with #00A235 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#A2006D is suitable for Text, Button, Accent and works well with Vivid, Neon styles.

#A2006D is commonly associated with Energetic, Bold.

The name Flirt is linked to fleureter from French, meaning to touch lightly, to dart from flower to flower.

Name, History & Etymology

Origin Word fleureter
Meaning to touch lightly, to dart from flower to flower
Language French
First Recorded Use 16th Century

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.

Similar Named Colors

Jazzberry Jam #A50B5E ΔE 4.38
Dark Raspberry #872657 ΔE 6.51
Boysenberry #873260 ΔE 6.71
French Plum #811453 ΔE 6.87

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