Waterspout
HEX: #A4F4F9 | Modern Palette
Color Specifications
#A4F4F9
164, 244, 249
183°, 34% ,97%
34.14, 2.01, 0, 2.35
About Waterspout
Waterspout (#A4F4F9) is a color with RGB(164, 244, 249) and HSL(183.53°, 34.14%, 97.65%). In design, it fits Pastel, Cool styles and is suitable for Text, Background, Print. Its complementary color is #F9A9A4, which creates strong contrast. Its triadic palette includes #F9A4F4 and #F4F9A4. The name comes from Waterspout (English).
- HEX: #A4F4F9
- RGB: 164, 244, 249
- HSL: 183.53°, 34.14%, 97.65%
- Style: Pastel, Cool
- Use case: Text, Background, Print
- Complementary color: #F9A9A4
- Triadic colors: #F9A4F4, #F4F9A4
- The name comes from Waterspout (English).
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 #A4F4F9 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#E1E1FA
#EDEDF9
#A3F5F5
#E6E6E6
Frequently Asked Questions
Name, History & Etymology
History
The term 'waterspout' has been in use since at least the late 17th century. It is a compound word formed from 'water' and 'spout'. 'Spout' itself has Germanic origins, referring to a pipe or nozzle from which liquid issues, or the act of gushing forth. The combination accurately describes the visual phenomenon of water appearing to 'spout' up or down in a column. Early descriptions often focused on the visual aspect and the perceived danger to ships. Over time, scientific understanding evolved, distinguishing waterspouts from land tornadoes and categorizing them into tornadic and fair-weather types.
First Recorded Use
1693
Cultural Associations
Waterspouts have long been a source of fascination and sometimes fear for mariners and coastal communities. They appear in various maritime folklore and legends, often seen as omens or powerful, mysterious forces of nature. In some cultures, they might be associated with mythical sea creatures or divine manifestations. While generally less destructive than land tornadoes, their sudden appearance and potential to capsize small boats or damage coastal structures have ensured their place in human observation and storytelling.
Code Snippets
/* Background */
.element {
background-color: #A4F4F9;
}
/* Text */
.element {
color: #A4F4F9;
}
/* Border */
.element {
border: 1px solid #A4F4F9;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#A4F4F9,
#FBF7F7
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#A4F4F9,
#FBF7F7
);
}
// SCSS variable
$waterspout: #A4F4F9;
// With RGB channels (useful for rgba() usage)
$waterspout-r: 164;
$waterspout-g: 244;
$waterspout-b: 249;
// Usage
.element {
background-color: $waterspout;
color: rgba($waterspout-r, $waterspout-g, $waterspout-b, 0.8);
}