Vanilla Ice
HEX: #F38FA9 | Modern Palette
Color Specifications
#F38FA9
243, 143, 169
344°, 41% ,95%
0, 41.15, 30.45, 4.71
About Vanilla Ice
Vanilla Ice (#F38FA9) is a color with RGB(243, 143, 169) and HSL(344.4°, 41.15%, 95.29%). In design, it fits Warm styles and is suitable for Text, Background, Print. Its complementary color is #8FF3D9, which creates strong contrast. Its triadic palette includes #A9F38F and #8FA9F3.
- HEX: #F38FA9
- RGB: 243, 143, 169
- HSL: 344.4°, 41.15%, 95.29%
- Style: Warm
- Use case: Text, Background, Print
- Complementary color: #8FF3D9
- Triadic colors: #A9F38F, #8FA9F3
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 #F38FA9 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#B4B4A6
#9E9EAA
#F19393
#ADADAD
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #F38FA9;
}
/* Text */
.element {
color: #F38FA9;
}
/* Border */
.element {
border: 1px solid #F38FA9;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#F38FA9,
#EEF8F5
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#F38FA9,
#EEF8F5
);
}
// SCSS variable
$vanilla-ice: #F38FA9;
// With RGB channels (useful for rgba() usage)
$vanilla-ice-r: 243;
$vanilla-ice-g: 143;
$vanilla-ice-b: 169;
// Usage
.element {
background-color: $vanilla-ice;
color: rgba($vanilla-ice-r, $vanilla-ice-g, $vanilla-ice-b, 0.8);
}