Inchworm
HEX: #B2EC5D | Modern Palette
Color Specifications
#B2EC5D
178, 236, 93
84°, 79% ,64%
25, 0, 61, 7
About Inchworm
Inchworm (#B2EC5D) is a color with RGB(178, 236, 93) and HSL(84.3°, 79%, 64.5%). It is commonly associated with Playful moods. In design, it fits Vivid styles and is suitable for Text, Button, Accent. Its complementary color is #975DEC, which creates strong contrast. Its triadic palette includes #5DB2EC and #EC5DB2. The name comes from Inchworm (English).
- HEX: #B2EC5D
- RGB: 178, 236, 93
- HSL: 84.3°, 79%, 64.5%
- Mood: Playful
- Style: Vivid
- Use case: Text, Button, Accent
- Complementary color: #975DEC
- Triadic colors: #5DB2EC, #EC5DB2
- The name comes from Inchworm (English).
Live Components
Color Palettes
Inchworm #B2EC5D is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Inchworm #B2EC5D pairs with #975DEC as its complementary color, and #5DB2EC and #EC5DB2 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The term 'inchworm' is a descriptive compound word, combining 'inch' (referring to the unit of measurement, alluding to its movement) and 'worm' (a general term for a small, legless or limbless invertebrate, though technically inchworms are insect larvae). The earliest known printed use dates back to 1796 in 'The American Universal Magazine'. The name perfectly captures the distinctive locomotion of these caterpillars, which appear to measure the ground inch by inch as they move by extending their front and then bringing their rear segments forward, creating a loop.
First Recorded Use
1796
Cultural Associations
Inchworms are widely recognized for their unique movement, making them a common subject in children's books and nature observations. They are generally harmless to humans, though some species can be agricultural pests. Their movement has inspired metaphors for slow, deliberate progress. In some cultures, the appearance of an inchworm might be seen as a sign of good luck or a reminder to take things one step at a time.
Code Snippets
/* Background */
.element {
background-color: #B2EC5D;
}
/* Text */
.element {
color: #B2EC5D;
}
/* Border */
.element {
border: 1px solid #B2EC5D;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#B2EC5D,
#975DEC
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#B2EC5D,
#975DEC
);
}
// SCSS variable
$inchworm: #B2EC5D;
// With RGB channels (useful for rgba() usage)
$inchworm-r: 178;
$inchworm-g: 236;
$inchworm-b: 93;
// Usage
.element {
background-color: $inchworm;
color: rgba($inchworm-r, $inchworm-g, $inchworm-b, 0.8);
}