Icon with selected background color in pages section

Hi,
I have a pages section and want to display the listing with the page icon on a custom background. This works to get the icon:

sections:
  pages:
    type: pages
    label: Website pages
    image: icon

But this shows me icons for pages without images, and the first image for those with images:

sections:
  pages:
    type: pages
    label: Website pages
    image:
      back: white
      image: icon

Have I got the syntax wrong here? To clarify I just want to show icons, no images

This works for me:

image:
  query: icon
  back: rebeccapurple

That’s done it, thank you!