How to change Entry completion background color?

Hi,
I am not able to properly change the entry completion background-color.
The Entry has a dark background but the background is white for suggested items.

completion

I tried to change in css:

  • entry
  • entry window
  • entry frame
  • window
  • window frame
  • window decoration
  • popover

Also, I could not find if it is possible to have icons set for each entry completion. Is this possible?

Thanks!

Here is a quick example:

entry {
   color: white;
   background-color: blue
}

entry .view {
   background-color: blue;
}

entry .view .cell {
   color: white;
   border: 1px solid white;
}

If you want to explore which other nodes and classes you can style, run your application with the gtk inspector enabled, e.g. GTK_DEBUG=interactive ./yourapp.

Hope it helps!

2 Likes

Thanks Martin, the GTK_DEBUG=interactive solve my problems.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.