Car colour - does it matter when buying a car? (2024)

x

Car colour - does it matter when buying a car? (1)

The AA theaa.com FREE - In Google Play!

View

');$businessLinkMobileCount = $('.business-customer-mobile').length;if ($areYouBusinessCustomer.length && $businessLinkMobileCount == 0) {$mobileBusinessCustomerLink.html($areYouBusinessCustomer.html());$('.mobile-grey').append($mobileBusinessCustomerLink);}if (window.aa.helpers.cache.cachedElements.$window.width() <= mobileBreakpoint) {// console.log("smaller than breakpoint");$(".mobile-grey a, .nav-logo a ").attr("tabindex", "-1");$("#mainNavigation button, .mobile-tablet-menu-open ").attr("disabled", "disabled");$('#mainNavigation').addClass('mobile-main-nav').removeClass('desktop-main-nav');$('.mobile-grey').appendTo('.desktop-white');$('nav.aa-mega-menu').addClass('mobile-nav');if (!$('.scroller').length) {$('#site-header-yellow >.wrapper').wrap("

");}$('.mobile-tablet-menu').animate({ width: 'show' }, 30);$primaryHeadingCount = 0;$("#mainNavigation > ul > li.primary").each(function () {$primaryHeadingForMobile = $('

  • ');$firstColumnOfMegaMenu = $(this).find("nav > div > ul:nth-child(1)");$anchor = $($(this).children()[0]);anchorHtmlText = $anchor.html();$primaryHeadingForMobile.html(anchorHtmlText);var primaryNavCount = $(".primary.childrens").length;$primaryHeadingCount = $('.primary-heading').length;if ($primaryHeadingCount < primaryNavCount) {$firstColumnOfMegaMenu.prepend($primaryHeadingForMobile);}$backLinkMobileCount = $('.backLink').length;if ($backLinkMobileCount < primaryNavCount) {$firstColumnOfMegaMenu.prepend('

  • ');}});$('.main-nav').keydown(function (e) {if (e.which === 27 || e.keyCode === 27) {mobileCloseClick(e);$(".left.logo").focus();}});}else if (window.aa.helpers.cache.cachedElements.$window.width() > mobileBreakpoint) {$('.left.logo').animate({ width: 'show' }, 30);$('.mobile-grey').appendTo('.top-header-links');$('nav.aa-mega-menu').removeClass('mobile-nav');$("#mainNavigation button, .mobile-tablet-menu-open ").removeAttr("disabled");$('#mainNavigation').addClass('desktop-main-nav').removeClass('mobile-main-nav');$(".campaign-hero ").parents(':eq(2)').css('padding', '0')if ($('.scroller').length) {$('#site-header-yellow >.wrapper').unwrap("

    ");}$('.mobile-tablet-menu').animate({ width: 'hide' }, 0);$('button > hr').css({"opacity": "0","visibility": "hidden"});$('.aa-mega-menu').css({"opacity": "0","visibility": "hidden"});$('.right.mobile-grey').show();$('#mainNavigation > ul.aa-main-nav > li.primary > button').keydown(function (e) {if (e.which === 13 || e.keyCode === 13) { /// for ENTER pressconst boxes = document.querySelectorAll('.anchor');boxes.forEach((box, index) => {box.setAttribute('aria-expanded', 'true');});//remove active mega menu from HOVER if open if ($currentHoverMenuItem) {var $primaryNavigationListItem = $currentHoverMenuItem.parent();$currentHoverMenuItem.removeClass('menu-active').css({"opacity": "0","visibility": "hidden"});var $menuUnderLine = $primaryNavigationListItem.find('button > hr');$menuUnderLine.css({"opacity": "0","visibility": "hidden"});$currentHoverMenuItem = null;}applyMenuHoverInEffects($(this).parent());$('#mainContent').removeAttr("style");$('#mainContent').css({"opacity": "0.5","height": "calc(100% - 225px)","width": "100%","visibility": "visible","background-color": "#000","position": "absolute",// "top": "134px","left": "0px","z-index": "1"});$('#mainContent').addClass('menu-base-transition');$currentActiveMenuItem = $(this).parent().find('.aa-mega-menu');$currentActiveMenuItem.toggleClass("menu-active");// $('.column .sub-menu.col').animate({ width: 'show' }, 300);}else if (e.which === 9 || e.keyCode === 9) { // for TAB pressif ($currentActiveMenuItem) {e.preventDefault();var $firstAnchorOfMegaMenu = $($currentActiveMenuItem.find('div > ul:first-child > li:first-child > a')[0]);$firstAnchorOfMegaMenu.focus();}}});//get all last anchor items from all mega menus and attach key down event for Tab transer$("#mainNavigation > ul > li > nav > div > ul:last-child li:last-child a").keydown(function (e) {if (e.which === 9 || e.keyCode === 9) {console.log("tabbed...");$currentActiveMenuItem.removeClass('menu-active');var $nextPrimayNavItem = $currentActiveMenuItem.parent();if ($nextPrimayNavItem) {applyMenuHoverOutEffects($nextPrimayNavItem);$('header#site-header-yellow').css('background', defaultBgColor).removeClass('bg-change');$nextPrimayNavItem.find('button')[0].focus();$currentActiveMenuItem = null;}else {//this will happen for very last anchor of last mega menu. there is no next menu item to focus to//so focus should be move to mainContent$('#mainContent').focus();}}});//for escape key- close the drop down menu if its open$('#mainNavigation > ul.aa-main-nav').keydown(function (e) {if (e.which === 27 || e.keyCode === 27) {if ($currentActiveMenuItem) {var $primaryNavListItem = $currentActiveMenuItem.parent()applyMenuHoverOutEffects($primaryNavListItem);$('header#site-header-yellow').css('background', defaultBgColor).removeClass('bg-change');$primaryNavListItem.find('button')[0].focus();$currentActiveMenuItem = null;}const boxes = document.querySelectorAll('.anchor');boxes.forEach((box, index) => {box.setAttribute('aria-expanded', 'false');});}});//when user mouse hovers from outside menu area then menu needs to animate with set transitions defined in css//but as sson as it enter menu are we need to remove animation transitions which are enabled. so differnt animation menu can be opened quickly$('#mainNavigation > ul.aa-main-nav').hover(function () {removeAnimation = true;}, function () {$('body').removeClass('notransition');removeAnimation = false;//this condition is added because after multiple ESC and TAB press somehow UL mouseout event was triggering and//it was causing background to set default yellow colorif ($currentActiveMenuItem == null) {$('header#site-header-yellow').css('background', defaultBgColor).removeClass('bg-change');}});}if ($('#mainNavigation').hasClass('desktop-main-nav')) {$('.desktop-main-nav > ul.aa-main-nav > li.primary').hover(function () {// console.log("applying hover effects");$currentHoverMenuItem = $(this).find('.aa-mega-menu');//remove menu-active class from active mega menu from keyboard if open if ($currentActiveMenuItem) {var $primaryNavigationListItem = $currentActiveMenuItem.parent();$currentActiveMenuItem.removeClass('menu-active').removeAttr("style");var $menuUnderLine = $primaryNavigationListItem.find('button > hr');$menuUnderLine.css({"opacity": "0","visibility": "hidden"});//If hover element and active keyboard element is not same then set active elment to null . giving preference to hoverif ($currentActiveMenuItem[0] != $currentHoverMenuItem[0])$currentActiveMenuItem = null;}applyMenuHoverInEffects(this);if (removeAnimation) {setTimeout(function () {$('body').addClass('notransition');}, 500);removeAnimation = false;}$('#mainContent').removeAttr("style");$('#mainContent').css({ "visibility": "visible" });$('#mainContent').addClass('menu-base-transition');}, function () {$currentHoverMenuItem = null;applyMenuHoverOutEffects(this);});}applyMenuHoverInEffects = function ($primaryNavElement) {// console.log("In applyMenuHoverInEffects");$this = $primaryNavElement;var $megaMenu = $($this).find('.aa-mega-menu');$megaMenu.css({"opacity": "1","visibility": "visible"});var $menuUnderLine = $($this).find('button > hr');$menuUnderLine.css({"opacity": "1","visibility": "visible"});//change header background with css transition class$('header#site-header-yellow').css('background', '#fff').addClass('bg-change');$('header#site-header-yellow').addClass('menu-base-transition');}applyMenuHoverOutEffects = function ($primaryNavElement) {$this = $primaryNavElement;var $megaMenu = $($this).find('.aa-mega-menu');if (window.aa.helpers.cache.cachedElements.$window.width() > mobileBreakpoint) {$megaMenu.css({"opacity": "0","visibility": "hidden"});var $menuUnderLine = $($this).find('button > hr');$menuUnderLine.css({"opacity": "0","visibility": "hidden"});$('#mainContent').css({"visibility": "hidden",});}}$('header#site-header-yellow .main-nav ul.aa-main-nav > li').each(function () {if ($(this).find(".aa-mega-menu").length) {$(this).addClass('childrens')}});function mobileCloseClick(e) {// console.log("Mobille close called");e.preventDefault();$('body').removeClass("fixed-position");$('body').removeClass('mmenu-opened');$('header#site-header-yellow .main-nav').animate({ right: '-100vw' }, 0);$('header#site-header-yellow.mobilemenu-active').animate({ right: '-100vw' }, 0);$('header#site-header-yellow.mobilemenu-active .scroller').animate({ right: '-100vw' }, 0);setTimeout(function () { $('#site-header-yellow').removeClass('mobilemenu-active') }, 0);$('.left.logo').animate({ width: 'show' }, 0);$('.mobile-tablet-menu').animate({ width: 'show' }, 0);$('.right.mobile-grey').show();$('#mainContent').removeAttr("style");const mobilemenuButton = document.querySelectorAll('.mobile-tablet-menu');mobilemenuButton[0].setAttribute('aria-expanded', 'false');const mobilemenuButtonOpen = document.querySelectorAll('.mobile-tablet-menu-open');mobilemenuButtonOpen[0].setAttribute('aria-expanded', 'false');$('.main-nav').css('min-height', 'auto');if ($('.aa-mega-menu').hasClass('secondlevelOpen')) {$('.aa-mega-menu').stop().animate({ 'right': '-100vw' }, 0);primaryItem.parent('li').siblings('li').removeClass('hide-menu').removeClass('activated');$('.aa-mega-menu').removeClass('secondlevelOpen');}$(".scroller").css("height", "100vh");$(".left.logo a").focus();$(".mobile-grey a, .nav-logo a ").attr("tabindex", "-1");$("#mainNavigation button, .mobile-tablet-menu-open ").attr("disabled", "disabled");setTimeout(function () {primaryItem.parent('li').find('.anchor').removeClass('hide-menu');primaryItem.parent('li').siblings('li').removeClass('hide-menu').removeClass('activated');}, 0);}$('.mobile-tablet-menu').click(function (e) {e.preventDefault();$('body').addClass("fixed-position");$(".mobile-grey a, .nav-logo a ").removeAttr("tabindex");$("#mainNavigation button, .mobile-tablet-menu-open ").removeAttr("disabled");$('header#site-header-yellow .main-nav').animate({ right: '0' }, 300);$('.scroller').animate({ right: '0' }, 300);$('.left.logo').animate({ width: 'hide' }, 300);$('.mobile-tablet-menu').animate({ width: 'hide' }, 0);if ($('.scroller').length) {$('#site-header-yellow').addClass('mobilemenu-active');}var primaryHeight = $('.main-nav').height() + 120;$('.main-nav').css('min-height', 'auto');const mobilemenuButton = document.querySelectorAll('.mobile-tablet-menu');mobilemenuButton[0].setAttribute('aria-expanded', 'true');const mobilemenuButtonOpen = document.querySelectorAll('.mobile-tablet-menu-open');mobilemenuButtonOpen[0].setAttribute('aria-expanded', 'true');$(".scroller").css("height", (Math.max(document.documentElement.clientHeight, window.innerHeight || 0) - $("#site-header-yellow").offset().top));$(".left.menu-logo a").focus();});$('.mobile-tablet-menu-open').click(function (e) {// changes for CD-50114 startmobileCloseClick(e);// changes for CD-50114 end});var primaryItem = $('li.primary.childrens > button');var backlink = $('li.backLink > button');if (window.aa.helpers.cache.cachedElements.$window.width() <= mobileBreakpoint) {primaryItem.on('click', function (e) {console.log('primaryItem.on(click, function (e) ---');e.preventDefault();var megaHeight = $(this).next('.aa-mega-menu').height() + 120;$(this).parent('li').find('nav.aa-mega-menu.mobile-nav').stop().animate({ right: '0' }, 300);$(this).parent('li').removeClass('hide-menu');$(this).addClass('hide-menu');$(this).parent('li').siblings('li').addClass('hide-menu').removeClass('activated');$(this).parent('li').addClass('activated');$(this).next('.aa-mega-menu').addClass('secondlevelOpen');$(this).next('.aa-mega-menu').css('height', megaHeight);$('.main-nav').css('min-height', 'auto');$('.right.mobile-grey').hide();$('.column .sub-menu.col').animate({ width: 'show' }, 300);// $(".backLink button").focus();$(".left.menu-logo a").focus();});backlink.on('click', function (e) {e.stopPropagation();$(".secondlevelOpen").stop().animate({ width: 'hide' }, 300);$(this).parent('li').parent().parent().parent('.aa-mega-menu').stop().animate({ right: '-100vw' }, 300);$(this).parent('li').find('nav.aa-mega-menu.mobile-nav').stop().animate({ right: '-100vw' }, 300);setTimeout(function () {$('.right.mobile-grey').show();}, 300);$('.column .sub-menu.col').animate({ width: 'hide' }, 300);setTimeout(function () {primaryItem.parent('li').find('.anchor').removeClass('hide-menu');primaryItem.parent('li').siblings('li').removeClass('hide-menu').removeClass('activated');}, 300);$(this).parent('li').parent().parent().parent('.aa-mega-menu').removeClass('secondlevelOpen');$(this).next('.aa-mega-menu').css('height', 'auto');var primaryHeight = $('.main-nav').height() + 120;$('.main-nav').css('min-height', primaryHeight);});};window.aa.MenuSetupCompleted = true;}

    Skip to main content [Accesskey 'S'] Go to home page [Accesskey '1']Are you a business customer?

    • Broken down?
    • Route Planner
    • Help and support

    Does car colour really matter?

    It could affect the resale price...here's all you need to know

    Compared with engine spec and extras, colour is hardly a crucial decision, but if you choose the wrong colour, you might find it harder to sell at the best price when you come to sell it on.

    Metallic paint has been the most popular optional extra on new cars for many years – not only does it look good, it can benefit your pocket in the long run, too.

    Car colour - does it matter when buying a car? (2)


    Grey is the new black

    Silver was the most popular new car colour through most of the 2000s eventually being overtaken by black, which held the top spot for four years from 2009 to 2012.

    White was the most popular colour in 2013 and held the top position until 2017 when black regained the top spot with a fifth (20.3%) of new car sales.

    The Society of Motor Manufacturers & Traders (SMMT) have just published their round-up of new car registration data for 2018 and for the first time ever, grey has become the most popular new car colour in the UK, accounting for 20.9% of new car sales in 2018. Silver has fallen out of the top five and accounted for only 9.3% of sales.

    But is grey really just silver?

    If you're wondering whether there's a difference between grey and silver, you're not alone. However, as the BBC reported, they are in fact 2 different car colours.

    Contrary to popular opinion, the difference isn't down to metallic paint. You can have metallic grey as well as silver.

    The Nissan Qashqai comes in both a "gun metallic" and "blade silver" finish. A spokesman from the company said: "Silver aims to replicate the finish of silver the metal, whereas grey is the colour grey."

    Hopefully that clears things up...


    What were the most popular new car colours in 2018?

    1. Grey20.9% (495,127 registrations, up 1.2% on 2017)
    2. Black20.2% (down 0.1%)
    3. White18.3% (down 0.7%)
    4. Blue16.1% (up 0.2%)
    5. Red10.0% (up 0.1%)
    6. Silver9.3% (down 0.7%)
    7. Orange1.1% (up 0.4%)
    8. Green 0.9% (down 0.2%)
    9. Bronze0.4% (down 0.1%)
    10. Beige0.4% (up 0.1%)

    Henry Ford famously offered the Model T in 'any colour so long as it's black', but today of course you can get virtually any colour you like.

    The SMMT's figures show that we're still pretty conservative when it comes to car colour though and it's been nine years since there was a primary colour in the top three.

    Blue continues to hold a solid fourth place.


    Colour and design

    Picking the wrong colour could make a car harder to sell but tastes do change. In the early 2000s white was really only considered suitable for delivery vans and police cars but it rapidly grew in popularity and has been in the top three since 2013.

    Bright colours suit sports cars and hot hatches, but do they look as good on executive cars, where silver, black or grey is usually the colour of choice?

    Most models will look smarter in certain colours as the manufacturer may have had a particular colour in mind as the car was designed.

    Another aspect to look at is the colour of the trim. On a car with a dark body colour, a light-coloured trim may look smart, but it might not be so practical if your car's at the mercy of family wear andtear.


    Are some colours more likely to be stolen?

    Want to know if some colour cars are more likely to get stolen? There's no strong link between car colour and theft.

    A 1998 AA survey found that red and blue cars were the most popular target for thieves. Blue and red also happened to be the most popular colours on the road at the time though.


    Colours on used cars

    If you're buying a used car, check the colour matches the description on the registration document. Any changes in shade from panel to panel may indicate accident damage.


    What is the safest colour?

    We can't say that one colour's safer on the road than any other.

    Studies have looked for links between colour and accident rate, to see if it's possible to prove that certain colours are more visible – and therefore safer – than others.

    A study in New Zealand (published in the British Medical Journal in 2003) looked at the effect of car colour and the risk of injury in a crash, and suggested that silver is the safest colour. But there are so many factors involved in an accident that it's impossible to be certain. The result could be influenced by the type of driver that typically buys a silver car, the driving conditions or the safety equipment fitted.

    Could it be AA yellow?

    Our own Populus survey in 2011 found that yellow topped the poll of colours considered to be the safest.

    Edmund King, AA President, said, "We were not surprised that yellow comes out top as it is the colour selected by the AA to make our patrol vehicles more visible. There is also research on conspicuousness of vehicle colours which backs this up.

    "Before the 1980s, yellow was perceived as the ‘safe’ colour for utility vehicles, and this may strongly influence the choice of older generations. In bad light some car colours are easier to spot than others hence the importance of using your lights when visibility is poor.

    "We certainly believe that yellow AA patrol vans are easier to spot on the hard-shoulder but we accept that not everyone wants to drive a yellow car."

    People also ranked white (13%) and red (12%) as the safest colours, perhaps because of their high visibility.

    (updated 18 January 2018)

    More car buying advice
    • New car safety ratings
    • Fuel consumption and emissions
    • Insurance groups
    • Car tax
    • Car buying scams
    • Test drive tips
    • Tips for buying a used car

    AA Cars

    Buy a used car from a name you can trust

    Find out more

  • Car colour - does it matter when buying a car? (2024)
    Top Articles
    Latest Posts
    Article information

    Author: Stevie Stamm

    Last Updated:

    Views: 5959

    Rating: 5 / 5 (80 voted)

    Reviews: 95% of readers found this page helpful

    Author information

    Name: Stevie Stamm

    Birthday: 1996-06-22

    Address: Apt. 419 4200 Sipes Estate, East Delmerview, WY 05617

    Phone: +342332224300

    Job: Future Advertising Analyst

    Hobby: Leather crafting, Puzzles, Leather crafting, scrapbook, Urban exploration, Cabaret, Skateboarding

    Introduction: My name is Stevie Stamm, I am a colorful, sparkling, splendid, vast, open, hilarious, tender person who loves writing and wants to share my knowledge and understanding with you.