French Pink
HEX: #FD6C9E | Modern Palette
Color Specifications
#FD6C9E
253, 108, 158
339°, 57% ,99%
0, 57.31, 37.55, 0.78
About French Pink
French Pink (#FD6C9E) is a color with RGB(253, 108, 158) and HSL(339.31°, 57.31%, 99.22%). In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #6CFDCB, which creates strong contrast. Its triadic palette includes #9EFD6C and #6C9EFD.
- HEX: #FD6C9E
- RGB: 253, 108, 158
- HSL: 339.31°, 57.31%, 99.22%
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #6CFDCB
- Triadic colors: #9EFD6C, #6C9EFD
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 #FD6C9E from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#A8A89A
#87879F
#FA7474
#9E9E9E
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #FD6C9E;
}
/* Text */
.element {
color: #FD6C9E;
}
/* Border */
.element {
border: 1px solid #FD6C9E;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FD6C9E,
#FCFEFD
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FD6C9E,
#FCFEFD
);
}
// SCSS variable
$french-pink: #FD6C9E;
// With RGB channels (useful for rgba() usage)
$french-pink-r: 253;
$french-pink-g: 108;
$french-pink-b: 158;
// Usage
.element {
background-color: $french-pink;
color: rgba($french-pink-r, $french-pink-g, $french-pink-b, 0.8);
}