Toolbox
HEX: #746CC0 | Modern Palette
Color Specifications
#746CC0
116, 108, 192
245°, 43% ,75%
39.58, 43.75, 0, 24.71
About Toolbox
Toolbox (#746CC0) is a color with RGB(116, 108, 192) and HSL(245.71°, 43.75%, 75.29%). It is commonly associated with Calm moods. In design, it fits Cool styles and is suitable for Text, Print. Its complementary color is #B8C06C, which creates strong contrast. Its triadic palette includes #C0746C and #6CC074. The name comes from Toolbox (English).
- HEX: #746CC0
- RGB: 116, 108, 192
- HSL: 245.71°, 43.75%, 75.29%
- Mood: Calm
- Style: Cool
- Use case: Text, Print
- Complementary color: #B8C06C
- Triadic colors: #C0746C, #6CC074
- The name comes from Toolbox (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 #746CC0 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word 'toolbox' is a compound word formed from 'tool' and 'box'. The word 'tool' itself comes from Old English 'tōl', meaning 'instrument, implement, weapon'. 'Box' comes from Old English 'box', referring to a 'wooden container'. The concept of a container specifically designed to hold tools likely emerged as tools became more specialized and numerous, requiring organized storage and portability. Early toolboxes would have been simple wooden chests, evolving over time to include more sophisticated designs, materials (like metal and plastic), and internal organization (trays, compartments). The metaphorical use of 'toolbox' (e.g., 'a toolbox of skills') became common in the 20th century.
First Recorded Use
1885
Cultural Associations
The toolbox is a ubiquitous symbol of craftsmanship, repair, and problem-solving. It is often associated with manual labor, DIY culture, and the ability to fix things. In many cultures, having a well-stocked toolbox is seen as a sign of preparedness and self-reliance. It also features prominently in popular culture, from children's toys to television shows and movies depicting construction or repair work. The phrase 'open your toolbox' or 'add to your toolbox' is a common metaphor for utilizing or acquiring a range of skills or strategies.
Code Snippets
/* Background */
.element {
background-color: #746CC0;
}
/* Text */
.element {
color: #746CC0;
}
/* Border */
.element {
border: 1px solid #746CC0;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#746CC0,
#D6DCA4
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#746CC0,
#D6DCA4
);
}
// SCSS variable
$toolbox: #746CC0;
// With RGB channels (useful for rgba() usage)
$toolbox-r: 116;
$toolbox-g: 108;
$toolbox-b: 192;
// Usage
.element {
background-color: $toolbox;
color: rgba($toolbox-r, $toolbox-g, $toolbox-b, 0.8);
}