Stormcloud
HEX: #4F666A | Modern Palette
Color Specifications
#4F666A
79, 102, 106
188°, 25% ,41%
25.47, 3.77, 0, 58.43
About Stormcloud
Stormcloud (#4F666A) is a color with RGB(79, 102, 106) and HSL(188.89°, 25.47%, 41.57%). It is commonly associated with Calm moods. In design, it fits Muted, Cool styles and is suitable for Text, Border, Print. Its complementary color is #6A534F, which creates strong contrast. Its triadic palette includes #6A4F66 and #666A4F. The name comes from Stormcloud (English).
- HEX: #4F666A
- RGB: 79, 102, 106
- HSL: 188.89°, 25.47%, 41.57%
- Mood: Calm
- Style: Muted, Cool
- Use case: Text, Border, Print
- Complementary color: #6A534F
- Triadic colors: #6A4F66, #666A4F
- The name comes from Stormcloud (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 #4F666A from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The term 'stormcloud' is a compound word formed from 'storm' (Old English 'storm', meaning 'commotion, disturbance, assault') and 'cloud' (Old English 'clud', originally meaning 'mass of rock, hill', later 'mass of vapor in the sky'). The combination likely emerged as a descriptive term for the specific type of cloud associated with bad weather. Its usage became more common in literature and meteorological observations during the 19th century as scientific understanding of weather patterns advanced. The word is straightforward and descriptive, requiring little etymological transformation.
First Recorded Use
1790s
Cultural Associations
Stormclouds are universally recognized symbols of impending bad weather, danger, or metaphorical gloom. They appear frequently in art, literature, and music to set a mood of foreboding, drama, or melancholy. In many cultures, the arrival of stormclouds can be a sign of a necessary change (rain for crops) or a destructive force. The visual of dark, heavy clouds is deeply ingrained in human perception of nature's power.
Code Snippets
/* Background */
.element {
background-color: #4F666A;
}
/* Text */
.element {
color: #4F666A;
}
/* Border */
.element {
border: 1px solid #4F666A;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#4F666A,
#85574F
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#4F666A,
#85574F
);
}
// SCSS variable
$stormcloud: #4F666A;
// With RGB channels (useful for rgba() usage)
$stormcloud-r: 79;
$stormcloud-g: 102;
$stormcloud-b: 106;
// Usage
.element {
background-color: $stormcloud;
color: rgba($stormcloud-r, $stormcloud-g, $stormcloud-b, 0.8);
}