Magnolia
HEX: #F8F4FF | Modern Palette
Color Specifications
#F8F4FF
248, 244, 255
261°, 100% ,97%
3, 4, 0, 0
About Magnolia
Magnolia (#F8F4FF) is a color with RGB(248, 244, 255) and HSL(261.8°, 100%, 97.8%). It is commonly associated with Playful moods. In design, it fits Neon styles and is suitable for Text, Button, Background. Its complementary color is #FBFFF4, which creates strong contrast. Its triadic palette includes #FFF8F4 and #F4FFF8. The name comes from Magnolia (French).
- HEX: #F8F4FF
- RGB: 248, 244, 255
- HSL: 261.8°, 100%, 97.8%
- Mood: Playful
- Style: Neon
- Use case: Text, Button, Background
- Complementary color: #FBFFF4
- Triadic colors: #FFF8F4, #F4FFF8
- The name comes from Magnolia (French).
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 #F8F4FF from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#F5F5FF
#F4F4FF
#F7F5F5
#F6F6F6
Frequently Asked Questions
Name, History & Etymology
History
The genus Magnolia was named by French botanist Charles Plumier in 1703 in honor of Pierre Magnol, a distinguished French botanist and director of the botanical garden in Montpellier. Magnol was known for his work on plant classification. The first magnolia species brought to Europe was M. virginiana in the late 17th century. The flower became popular in horticulture and art due to its large, showy, and often fragrant blooms.
First Recorded Use
The genus 'Magnolia' was named by Charles Plumier in 1703.
Cultural Associations
Magnolias are often associated with beauty, dignity, and nobility. In the Southern United States, the Southern Magnolia (Magnolia grandiflora) is an iconic tree, symbolizing the South itself, often appearing in literature and art. Its large white flowers are a common motif. In some Asian cultures, magnolias symbolize purity and love. The color #f8f4ff, a very light lavender or off-white, evokes a delicate, almost ethereal quality, which can be associated with the soft, often pale colors of many magnolia blooms, particularly the lighter varieties or the underside of petals.
Code Snippets
/* Background */
.element {
background-color: #F8F4FF;
}
/* Text */
.element {
color: #F8F4FF;
}
/* Border */
.element {
border: 1px solid #F8F4FF;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#F8F4FF,
#FBFFF4
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#F8F4FF,
#FBFFF4
);
}
// SCSS variable
$magnolia: #F8F4FF;
// With RGB channels (useful for rgba() usage)
$magnolia-r: 248;
$magnolia-g: 244;
$magnolia-b: 255;
// Usage
.element {
background-color: $magnolia;
color: rgba($magnolia-r, $magnolia-g, $magnolia-b, 0.8);
}