Give the desktop real themes, video wallpapers, and honest titlebars
Appearance now opens on Themes: light and dark side by side, each remembering its own choice, over galleries of ten shipped themes — Tokyo Moon and Day joined by Moon Rose, Catppuccin, Nord, Gruvbox and Everforest in both modes. A theme is a complete palette: the catalog lives in themes.json, Theme.qml reads every color token from the active record, and one render pipeline carries it to kitty, tmux, btop, GTK, Vicinae, Firefox's chrome, and the lock screen. The Theme editor builds new ones from four wells — wheel, hex, or eyedropper — with derived surfaces, a saturation slider, debounced fine-tune, and effects that save with the theme. Custom edits finally keep GNOME's accent, kitty's border, and hyprlock in sync. Wallpapers can be video: mpvpaper per output, hardware-decoded, muted and looped, supervised and respawned. Panama owns the pausing — games, battery, and a bar pill for right now — because the compositor rebuilds full-screen blur for every frame a video wallpaper draws. The lock screen gets a still frame. Titlebars stop lying. GNOME apps get close-only on your chosen side, the maximize and double-click settings are gone, the Settings window obeys the same rules, and its titlebar can be turned off entirely. Typography becomes five labeled dropdowns instead of a wall of samples. Contracts updated and written throughout (165 now); per the redesign workflow none were executed — the full sweep runs once at the end. Claude-Session: https://claude.ai/code/session_01Ms2FbjQy31TVf3CEvQhGM8
This commit is contained in:
Executable → Regular
+58
-47
@@ -1,53 +1,64 @@
|
||||
/* GTK NAMED COLORS ---------------- use responsibly! */
|
||||
@define-color accent_bg_color RGB(130 170 255 / 80%);
|
||||
|
||||
@define-color destructive_bg_color #c01c28;
|
||||
@define-color destructive_fg_color white;
|
||||
@define-color success_bg_color #26a269;
|
||||
@define-color success_fg_color white;
|
||||
@define-color warning_bg_color #cd9309;
|
||||
@define-color warning_fg_color RGB(0 0 0 / 80%);
|
||||
@define-color error_bg_color #c01c28;
|
||||
@define-color error_fg_color white;
|
||||
@define-color accent_color oklab(from @accent_bg_color max(l, 0.85) a b);
|
||||
@define-color destructive_color oklab(from @destructive_bg_color max(l, 0.85) a b);
|
||||
@define-color success_color oklab(from @success_bg_color max(l, 0.85) a b);
|
||||
@define-color warning_color oklab(from @warning_bg_color max(l, 0.85) a b);
|
||||
@define-color error_color oklab(from @error_bg_color max(l, 0.85) a b);
|
||||
|
||||
/* Panama regenerates the block below from the active theme's palette, and only
|
||||
* the block: every rule outside the markers belongs to the vendored theme and
|
||||
* is never touched. Edit the theme, not this file -- the next theme change
|
||||
* overwrites whatever is between the markers. The values shipped here are Tokyo
|
||||
* Moon, the default dark theme, so the file is valid before it has ever been
|
||||
* rewritten. See quickshell/scripts/panama-theme-apps. */
|
||||
/* PANAMA THEME BEGIN */
|
||||
/* Generated from the "moon" theme by panama-theme-apps. Edit the
|
||||
* theme, not this block -- the next theme change overwrites it. */
|
||||
@define-color accent_bg_color #82aaff;
|
||||
@define-color accent_color #65bcff;
|
||||
@define-color accent_fg_color #1e2030;
|
||||
@define-color destructive_bg_color #c53b53;
|
||||
@define-color destructive_color #ff757f;
|
||||
@define-color destructive_fg_color #c8d3f5;
|
||||
@define-color success_bg_color #c3e88d;
|
||||
@define-color success_color #c3e88d;
|
||||
@define-color success_fg_color #1e2030;
|
||||
@define-color warning_bg_color #ffc777;
|
||||
@define-color warning_color #ffc777;
|
||||
@define-color warning_fg_color #1e2030;
|
||||
@define-color error_bg_color #c53b53;
|
||||
@define-color error_color #ff757f;
|
||||
@define-color error_fg_color #c8d3f5;
|
||||
@define-color window_bg_color #2e2f3d;
|
||||
@define-color window_fg_color white;
|
||||
@define-color view_bg_color @window_bg_color
|
||||
@define-color view_fg_color white;
|
||||
@define-color headerbar_bg_color @window_bg_color
|
||||
@define-color headerbar_fg_color white;
|
||||
@define-color headerbar_border_color white;
|
||||
@define-color headerbar_backdrop_color @window_bg_color;
|
||||
@define-color headerbar_shade_color RGB(46 47 61 / 8%);
|
||||
@define-color headerbar_darker_shade_color RGB(0, 0, 6, 0.9);
|
||||
@define-color window_fg_color #c8d3f5;
|
||||
@define-color view_bg_color #222436;
|
||||
@define-color view_fg_color #c8d3f5;
|
||||
@define-color headerbar_bg_color #2e2f3d;
|
||||
@define-color headerbar_fg_color #c8d3f5;
|
||||
@define-color headerbar_border_color #3b4261;
|
||||
@define-color headerbar_backdrop_color #1e2030;
|
||||
@define-color headerbar_shade_color rgba(30, 32, 48, 0.08);
|
||||
@define-color headerbar_darker_shade_color rgba(30, 32, 48, 0.9);
|
||||
@define-color sidebar_bg_color #1e2030;
|
||||
@define-color sidebar_fg_color #c8d3f5;
|
||||
@define-color sidebar_backdrop_color #1e2030;
|
||||
@define-color sidebar_shade_color rgba(59, 66, 97, 0.08);
|
||||
@define-color sidebar_border_color rgba(59, 66, 97, 0.36);
|
||||
@define-color secondary_sidebar_bg_color #1e2030;
|
||||
@define-color secondary_sidebar_fg_color #c8d3f5;
|
||||
@define-color secondary_sidebar_backdrop_color #1e2030;
|
||||
@define-color secondary_sidebar_shade_color rgba(30, 32, 48, 0.25);
|
||||
@define-color secondary_sidebar_border_color rgba(59, 66, 97, 0.36);
|
||||
@define-color card_bg_color #2f334d;
|
||||
@define-color card_fg_color #c8d3f5;
|
||||
@define-color card_shade_color rgba(30, 32, 48, 0.25);
|
||||
@define-color dialog_bg_color #21212f;
|
||||
@define-color dialog_fg_color #c8d3f5;
|
||||
@define-color popover_bg_color #21212f;
|
||||
@define-color popover_fg_color #c8d3f5;
|
||||
@define-color popover_shade_color rgba(30, 32, 48, 0.25);
|
||||
@define-color thumbnail_bg_color #2f334d;
|
||||
@define-color thumbnail_fg_color #c8d3f5;
|
||||
@define-color shade_color rgba(30, 32, 48, 0.25);
|
||||
@define-color scrollbar_outline_color rgba(30, 32, 48, 0.5);
|
||||
/* PANAMA THEME END */
|
||||
|
||||
@define-color sidebar_bg_color #3c3c4b;
|
||||
@define-color sidebar_fg_color white;
|
||||
@define-color sidebar_backdrop_color #3c3c4b;
|
||||
@define-color sidebar_shade_color RGB(60 60 75/8%);
|
||||
@define-color sidebar_border_color RGB(75 75 90/36%);
|
||||
@define-color secondary_sidebar_bg_color #3c3c4b;
|
||||
@define-color secondary_sidebar_fg_color white;
|
||||
@define-color secondary_sidebar_backdrop_color #3c3c4b;
|
||||
@define-color secondary_sidebar_shade_color RGB(0 0 6/25%);
|
||||
@define-color secondary_sidebar_border_color RGB(0 0 6/36%);
|
||||
@define-color card_bg_color RGB(180 200 255/15%);
|
||||
@define-color card_fg_color white;
|
||||
@define-color card_shade_color RGB(46 47 61/8%);
|
||||
@define-color dialog_bg_color @window_bg_color;
|
||||
@define-color dialog_fg_color white;
|
||||
@define-color popover_bg_color @window_bg_color;
|
||||
@define-color popover_fg_color white;
|
||||
@define-color popover_shade_color RGB(0 0 6/25%);
|
||||
@define-color thumbnail_bg_color @window_bg_color;
|
||||
@define-color thumbnail_fg_color white;
|
||||
@define-color shade_color RGB(0 0 6/25%);
|
||||
@define-color scrollbar_outline_color RGB(0 0 12/95%);
|
||||
/* The GNOME named palette below is reference, not theme: applications ask for
|
||||
* @red_3 by name and expect GNOME's red. It stays outside the block. */
|
||||
@define-color blue_1 #99c1f1;
|
||||
@define-color blue_2 #62a0ea;
|
||||
@define-color blue_3 #3584e4;
|
||||
|
||||
Executable → Regular
+58
-47
@@ -1,53 +1,64 @@
|
||||
/* GTK NAMED COLORS ---------------- use responsibly! */
|
||||
@define-color accent_bg_color RGB(130 170 255 / 80%);
|
||||
|
||||
@define-color destructive_bg_color #c01c28;
|
||||
@define-color destructive_fg_color white;
|
||||
@define-color success_bg_color #26a269;
|
||||
@define-color success_fg_color white;
|
||||
@define-color warning_bg_color #cd9309;
|
||||
@define-color warning_fg_color RGB(0 0 0 / 80%);
|
||||
@define-color error_bg_color #c01c28;
|
||||
@define-color error_fg_color white;
|
||||
@define-color accent_color oklab(from @accent_bg_color max(l, 0.85) a b);
|
||||
@define-color destructive_color oklab(from @destructive_bg_color max(l, 0.85) a b);
|
||||
@define-color success_color oklab(from @success_bg_color max(l, 0.85) a b);
|
||||
@define-color warning_color oklab(from @warning_bg_color max(l, 0.85) a b);
|
||||
@define-color error_color oklab(from @error_bg_color max(l, 0.85) a b);
|
||||
|
||||
/* Panama regenerates the block below from the active theme's palette, and only
|
||||
* the block: every rule outside the markers belongs to the vendored theme and
|
||||
* is never touched. Edit the theme, not this file -- the next theme change
|
||||
* overwrites whatever is between the markers. The values shipped here are Tokyo
|
||||
* Moon, the default dark theme, so the file is valid before it has ever been
|
||||
* rewritten. See quickshell/scripts/panama-theme-apps. */
|
||||
/* PANAMA THEME BEGIN */
|
||||
/* Generated from the "moon" theme by panama-theme-apps. Edit the
|
||||
* theme, not this block -- the next theme change overwrites it. */
|
||||
@define-color accent_bg_color #82aaff;
|
||||
@define-color accent_color #65bcff;
|
||||
@define-color accent_fg_color #1e2030;
|
||||
@define-color destructive_bg_color #c53b53;
|
||||
@define-color destructive_color #ff757f;
|
||||
@define-color destructive_fg_color #c8d3f5;
|
||||
@define-color success_bg_color #c3e88d;
|
||||
@define-color success_color #c3e88d;
|
||||
@define-color success_fg_color #1e2030;
|
||||
@define-color warning_bg_color #ffc777;
|
||||
@define-color warning_color #ffc777;
|
||||
@define-color warning_fg_color #1e2030;
|
||||
@define-color error_bg_color #c53b53;
|
||||
@define-color error_color #ff757f;
|
||||
@define-color error_fg_color #c8d3f5;
|
||||
@define-color window_bg_color #2e2f3d;
|
||||
@define-color window_fg_color white;
|
||||
@define-color view_bg_color @window_bg_color
|
||||
@define-color view_fg_color white;
|
||||
@define-color headerbar_bg_color @window_bg_color
|
||||
@define-color headerbar_fg_color white;
|
||||
@define-color headerbar_border_color white;
|
||||
@define-color headerbar_backdrop_color @window_bg_color;
|
||||
@define-color headerbar_shade_color RGB(46 47 61 / 8%);
|
||||
@define-color headerbar_darker_shade_color RGB(0, 0, 6, 0.9);
|
||||
@define-color window_fg_color #c8d3f5;
|
||||
@define-color view_bg_color #222436;
|
||||
@define-color view_fg_color #c8d3f5;
|
||||
@define-color headerbar_bg_color #2e2f3d;
|
||||
@define-color headerbar_fg_color #c8d3f5;
|
||||
@define-color headerbar_border_color #3b4261;
|
||||
@define-color headerbar_backdrop_color #1e2030;
|
||||
@define-color headerbar_shade_color rgba(30, 32, 48, 0.08);
|
||||
@define-color headerbar_darker_shade_color rgba(30, 32, 48, 0.9);
|
||||
@define-color sidebar_bg_color #1e2030;
|
||||
@define-color sidebar_fg_color #c8d3f5;
|
||||
@define-color sidebar_backdrop_color #1e2030;
|
||||
@define-color sidebar_shade_color rgba(59, 66, 97, 0.08);
|
||||
@define-color sidebar_border_color rgba(59, 66, 97, 0.36);
|
||||
@define-color secondary_sidebar_bg_color #1e2030;
|
||||
@define-color secondary_sidebar_fg_color #c8d3f5;
|
||||
@define-color secondary_sidebar_backdrop_color #1e2030;
|
||||
@define-color secondary_sidebar_shade_color rgba(30, 32, 48, 0.25);
|
||||
@define-color secondary_sidebar_border_color rgba(59, 66, 97, 0.36);
|
||||
@define-color card_bg_color #2f334d;
|
||||
@define-color card_fg_color #c8d3f5;
|
||||
@define-color card_shade_color rgba(30, 32, 48, 0.25);
|
||||
@define-color dialog_bg_color #21212f;
|
||||
@define-color dialog_fg_color #c8d3f5;
|
||||
@define-color popover_bg_color #21212f;
|
||||
@define-color popover_fg_color #c8d3f5;
|
||||
@define-color popover_shade_color rgba(30, 32, 48, 0.25);
|
||||
@define-color thumbnail_bg_color #2f334d;
|
||||
@define-color thumbnail_fg_color #c8d3f5;
|
||||
@define-color shade_color rgba(30, 32, 48, 0.25);
|
||||
@define-color scrollbar_outline_color rgba(30, 32, 48, 0.5);
|
||||
/* PANAMA THEME END */
|
||||
|
||||
@define-color sidebar_bg_color #3c3c4b;
|
||||
@define-color sidebar_fg_color white;
|
||||
@define-color sidebar_backdrop_color #3c3c4b;
|
||||
@define-color sidebar_shade_color RGB(60 60 75/8%);
|
||||
@define-color sidebar_border_color RGB(75 75 90/36%);
|
||||
@define-color secondary_sidebar_bg_color #3c3c4b;
|
||||
@define-color secondary_sidebar_fg_color white;
|
||||
@define-color secondary_sidebar_backdrop_color #3c3c4b;
|
||||
@define-color secondary_sidebar_shade_color RGB(0 0 6/25%);
|
||||
@define-color secondary_sidebar_border_color RGB(0 0 6/36%);
|
||||
@define-color card_bg_color RGB(180 200 255/15%);
|
||||
@define-color card_fg_color white;
|
||||
@define-color card_shade_color RGB(46 47 61/8%);
|
||||
@define-color dialog_bg_color @window_bg_color;
|
||||
@define-color dialog_fg_color white;
|
||||
@define-color popover_bg_color @window_bg_color;
|
||||
@define-color popover_fg_color white;
|
||||
@define-color popover_shade_color RGB(0 0 6/25%);
|
||||
@define-color thumbnail_bg_color @window_bg_color;
|
||||
@define-color thumbnail_fg_color white;
|
||||
@define-color shade_color RGB(0 0 6/25%);
|
||||
@define-color scrollbar_outline_color RGB(0 0 12/95%);
|
||||
/* The GNOME named palette below is reference, not theme: applications ask for
|
||||
* @red_3 by name and expect GNOME's red. It stays outside the block. */
|
||||
@define-color blue_1 #99c1f1;
|
||||
@define-color blue_2 #62a0ea;
|
||||
@define-color blue_3 #3584e4;
|
||||
|
||||
Reference in New Issue
Block a user