New Car

HEX: #214FC6 | Modern Palette

On White
7.00:1
PASS
On Black
3.00:1
FAIL

Color Specifications

HEX
#214FC6
RGB
33, 79, 198
HSL
223°, 83% ,77%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Bold Playful
Style
Cool
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #4545C6
Protanopia #4C4CC6
Tritanopia #006868
Achromatopsia #595959

Frequently Asked Questions

New Car (#214FC6) is a color with RGB(33, 79, 198) and HSL(223.27°, 83.33%, 77.65%).

#214FC6 pairs strongly with #C69821 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#214FC6 is suitable for Text, Button, Accent and works well with Cool styles.

#214FC6 is commonly associated with Bold, Playful.

The name New Car is linked to New Car from English, meaning A recently manufactured vehicle that has not been previously owned or registered..

Name, History & Etymology

Origin Word New Car
Meaning A recently manufactured vehicle that has not been previously owned or registered.
Language English
First Recorded Use Early 20th Century

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.

Similar Named Colors

Cerulean Blue #2A52BE ΔE 1.41
Sapphire #0F52BA ΔE 2.90
Violet Blue #324AB2 ΔE 3.20
Medium Teal Blue #0054B4 ΔE 4.56

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);
}