christianwannerstedt / obsidian-tags-overview

Obsidian plugin which adds an extended tags panel where tagged files can be overviewed, filtered and accessed in an easy way.
MIT License
46 stars 0 forks source link

Can I change the font size and color of panel? #30

Open xh542428798 opened 8 months ago

xh542428798 commented 8 months ago

Sir, this is a wonderful plugin, I want to know is there any way to change the font size and color of panel?

christianwannerstedt commented 7 months ago

Hey, thanks, I'm glad you like it. It's not possible to change the font size and color of the panel directly through the plugin settings. The plugin uses available css variables so that it will follow the look and feel of the current theme. It would however be pretty simple to override the font size or color of the panel with the help of CSS snippets.

I.e: .tags-overview { background-color: gold; }

.tags-overview .tags-table-container tbody td { font-size: var(--font-ui-large); }