Mellow Apricot
HEX: #F8B878 | Modern Palette
Color Specifications
#F8B878
248, 184, 120
30°, 51% ,97%
0, 25.81, 51.61, 2.75
About Mellow Apricot
Mellow Apricot (#F8B878) is a color with RGB(248, 184, 120) and HSL(30°, 51.61%, 97.25%). In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #78B8F8, which creates strong contrast. Its triadic palette includes #78F8B8 and #B878F8.
- HEX: #F8B878
- RGB: 248, 184, 120
- HSL: 30°, 51.61%, 97.25%
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #78B8F8
- Triadic colors: #78F8B8, #B878F8
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 #F8B878 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#CDCD75
#C0C079
#FCB2B2
#C5C5C5
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #F8B878;
}
/* Text */
.element {
color: #F8B878;
}
/* Border */
.element {
border: 1px solid #F8B878;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#F8B878,
#F4F8FC
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#F8B878,
#F4F8FC
);
}
// SCSS variable
$mellow-apricot: #F8B878;
// With RGB channels (useful for rgba() usage)
$mellow-apricot-r: 248;
$mellow-apricot-g: 184;
$mellow-apricot-b: 120;
// Usage
.element {
background-color: $mellow-apricot;
color: rgba($mellow-apricot-r, $mellow-apricot-g, $mellow-apricot-b, 0.8);
}