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
French Fuchsia #FD3F92 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
French Fuchsia #FD3F92 pairs with #3FFDAA as its complementary color, and #92FD3F and #3F92FD in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}