QML TextArea in dark theme macos wrong defaults
-
TextArea darktheme macos issue
It requires the following fix for every TextArea I use
SystemPalette { id: systemPalette; colorGroup: SystemPalette.Active; }
TextArea { selectionColor: systemPalette.highlight selectedTextColor: systemPalette.highlightedText }also notice QML ToolBar's
ToolButtonitem does not support dark theme, withsvgiconwhile PushButton work perfectly ok. and show the svg in white on dark theme, and white on light theme.