holroy
January 22, 2025, 8:29am
2
I’ve not used it myself, but the tool mentioned in the thread below in Custom CSS & Theme Design (where I’ve moved your post for better responses) might be helpful.
I highly recommend checking out: https://github.com/chrisgrieser/obsidian-theme-design-utilities . It has a “Freeze Obsidian (with 4s delay)” option that comes in handy for situations like this.
[Screenshot 2025-01-16 074251]
With a quick look, the selector appears to be:
.suggestion-item.is-selected {
background-color: var(--background-modifier-hover);
}
with --background-modifier-hover being
--background-modifier-hover: rgba(var(--mono-rgb-100), 0.075);
So you could change the --back…