French Fuchsia
HEX: #FD3F92 | Modern Palette
Color Specifications
#FD3F92
253, 63, 146
333°, 75% ,99%
0, 75.1, 42.29, 0.78
About French Fuchsia
French Fuchsia (#FD3F92) is a color with RGB(253, 63, 146) and HSL(333.79°, 75.1%, 99.22%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #3FFDAA, which creates strong contrast. Its triadic palette includes #92FD3F and #3F92FD.
- HEX: #FD3F92
- RGB: 253, 63, 146
- HSL: 333.79°, 75.1%, 99.22%
- Mood: Playful
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #3FFDAA
- Triadic colors: #92FD3F, #3F92FD
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 #FD3F92 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#99998D
#6C6C93
#F95050
#8D8D8D
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #FD3F92;
}
/* Text */
.element {
color: #FD3F92;
}
/* Border */
.element {
border: 1px solid #FD3F92;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FD3F92,
#FCFFFD
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FD3F92,
#FCFFFD
);
}
// SCSS variable
$french-fuchsia: #FD3F92;
// With RGB channels (useful for rgba() usage)
$french-fuchsia-r: 253;
$french-fuchsia-g: 63;
$french-fuchsia-b: 146;
// Usage
.element {
background-color: $french-fuchsia;
color: rgba($french-fuchsia-r, $french-fuchsia-g, $french-fuchsia-b, 0.8);
}