Folly
HEX: #FF004F | Modern Palette
Color Specifications
#FF004F
255, 0, 79
341°, 100% ,50%
0, 100, 69, 0
About Folly
Folly (#FF004F) is a color with RGB(255, 0, 79) and HSL(341.4°, 100%, 50%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #00FFB0, which creates strong contrast. Its triadic palette includes #4FFF00 and #004FFF. The name comes from folie (Old French).
- HEX: #FF004F
- RGB: 255, 0, 79
- HSL: 341.4°, 100%, 50%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #00FFB0
- Triadic colors: #4FFF00, #004FFF
- The name comes from folie (Old 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 #FF004F from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word 'folly' entered English from Old French 'folie', which itself derived from 'fol' (foolish, mad). The root 'fol' is thought to come from Latin 'follis', meaning 'bellows' or 'bag', which later developed a sense of 'empty-headed' or 'windbag'. Over time, 'folly' has consistently referred to a lack of good sense, a foolish act, or a state of being foolish. It often implies a lighthearted or even charming foolishness, but can also denote a serious error in judgment.
First Recorded Use
Late 13th century
Cultural Associations
Folly has been a recurring theme in literature, art, and philosophy. Erasmus's 'In Praise of Folly' (1511) is a famous satirical essay where Folly herself extols her virtues and influence over humanity. In architecture, a 'folly' refers to a building constructed primarily for decoration, often with an eccentric or whimsical design, and serving no practical purpose. These architectural follies became popular in the 18th and 19th centuries, particularly in English landscape gardens, embodying a deliberate embrace of the impractical or whimsical. The concept of 'folly' also appears in various idioms, such as 'to commit a folly' or 'youthful follies'.
Code Snippets
/* Background */
.element {
background-color: #FF004F;
}
/* Text */
.element {
color: #FF004F;
}
/* Border */
.element {
border: 1px solid #FF004F;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FF004F,
#00FFB0
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FF004F,
#00FFB0
);
}
// SCSS variable
$folly: #FF004F;
// With RGB channels (useful for rgba() usage)
$folly-r: 255;
$folly-g: 0;
$folly-b: 79;
// Usage
.element {
background-color: $folly;
color: rgba($folly-r, $folly-g, $folly-b, 0.8);
}