New Car
HEX: #214FC6 | Modern Palette
Color Specifications
#214FC6
33, 79, 198
223°, 83% ,77%
83.33, 60.1, 0, 22.35
About New Car
New Car (#214FC6) is a color with RGB(33, 79, 198) and HSL(223.27°, 83.33%, 77.65%). It is commonly associated with Bold, Playful moods. In design, it fits Cool styles and is suitable for Text, Button, Accent. Its complementary color is #C69821, which creates strong contrast. Its triadic palette includes #C6214F and #4FC621. The name comes from New Car (English).
- HEX: #214FC6
- RGB: 33, 79, 198
- HSL: 223.27°, 83.33%, 77.65%
- Mood: Bold, Playful
- Style: Cool
- Use case: Text, Button, Accent
- Complementary color: #C69821
- Triadic colors: #C6214F, #4FC621
- The name comes from New Car (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 #214FC6 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The term 'new car' evolved alongside the automotive industry itself. In the very early days of automobiles, cars were often custom-built or produced in very small batches, and the distinction between 'new' and 'used' might have been less formal. As assembly lines and mass production took hold in the early 1900s, the idea of purchasing a vehicle directly from a manufacturer or dealership, untouched by previous owners, became a standard consumer experience. The phrase 'new car' became essential for marketing and sales, distinguishing these vehicles from the rapidly growing market for 'used cars'. The associated 'new car smell' became a cultural phenomenon, symbolizing freshness and luxury.
First Recorded Use
The concept of a 'new car' became prominent with the rise of mass production in the automotive industry, particularly with models like the Ford Model T. While the individual words 'new' and 'car' existed long before, their combination to specifically denote an unowned, factory-fresh automobile solidified in common usage as car ownership became widespread.
Cultural Associations
The 'new car' holds significant cultural weight in many societies, particularly in Western cultures. It often symbolizes status, success, freedom, and a fresh start. The act of buying a new car is a major life event for many individuals and families. The 'new car smell' is a widely recognized and often desired scent, even leading to air fresheners designed to replicate it. Advertising for new cars frequently emphasizes innovation, safety, design, and the emotional experience of ownership. The 'new car' market is a massive global industry, influencing economies and consumer trends.
Code Snippets
/* Background */
.element {
background-color: #214FC6;
}
/* Text */
.element {
color: #214FC6;
}
/* Border */
.element {
border: 1px solid #214FC6;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#214FC6,
#F5DB97
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#214FC6,
#F5DB97
);
}
// SCSS variable
$new-car: #214FC6;
// With RGB channels (useful for rgba() usage)
$new-car-r: 33;
$new-car-g: 79;
$new-car-b: 198;
// Usage
.element {
background-color: $new-car;
color: rgba($new-car-r, $new-car-g, $new-car-b, 0.8);
}