You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Operator-flagged 2026-05-10:
"Invalid color scheme force-dark (Expected one of: default,
prefer-dark, prefer-light)"
"Using GtkSettings:gtk-application-prefer-dark-theme with
libadwaita is unsupported. Please use AdwStyleManager:color-scheme
instead."
Two coupled corrections:
1. ADW_DEBUG_COLOR_SCHEME=force-dark -> prefer-dark across every
flatpak override at /var/lib/flatpak/overrides/. The
libadwaita-spec ADW_DEBUG_COLOR_SCHEME enum is
{default, prefer-dark, prefer-light} -- "force-dark" was invented
and rejected by libadwaita with the warning above. prefer-dark
reaches the same intent (apps render dark theme on launch) via
the supported API.
2. /etc/skel/.config/gtk-{3,4}.0/settings.ini: removed
gtk-application-prefer-dark-theme=true. libadwaita explicitly
ignores GtkSettings:gtk-application-prefer-dark-theme and warns
on its use; theming flows through AdwStyleManager:color-scheme
(which IS controlled by gsettings org.gnome.desktop.interface
color-scheme=prefer-dark in /etc/dconf/db/local.d/00-mios-theme).
gtk-theme-name=adw-gtk3-dark is retained -- it's the right knob
for the GTK-only widget chrome that libadwaita doesn't override.
0 commit comments