@wrCisco: If you import iswindows:
Code:
from plugin_utils import PluginApplication, QtWidgets, QtCore, Qt, iswindows
…and then an additional attribute:
Code:
mdp = True if iswindows else False
app = PluginApplication([], bk, app_icon=PLUGIN_ICON, match_dark_palette=mdp)
then under Windows windows will automatically support dark mode.
Recommended!
EDIT: On the other hand, since your screenshot was already in dark mode you probably already did it, only there is an older version on github.