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:
+60
-33
@@ -1,36 +1,63 @@
|
||||
@define-color accent_color rgba(192,153,255,0.8);
|
||||
@define-color accent_bg_color rgba(130,170,255,0.8);
|
||||
@define-color accent_fg_color #ffffff;
|
||||
@define-color destructive_color #ff7b63;
|
||||
@define-color destructive_bg_color #c01c28;
|
||||
@define-color destructive_fg_color #ffffff;
|
||||
@define-color success_color #8ff0a4;
|
||||
@define-color success_bg_color #26a269;
|
||||
@define-color success_fg_color #ffffff;
|
||||
@define-color warning_color #f8e45c;
|
||||
@define-color warning_bg_color #cd9309;
|
||||
@define-color warning_fg_color rgba(0, 0, 0, 0.8);
|
||||
@define-color error_color #ff7b63;
|
||||
@define-color error_bg_color #c01c28;
|
||||
@define-color error_fg_color #ffffff;
|
||||
@define-color window_bg_color rgba(46,47,61,0.98);
|
||||
@define-color window_fg_color #ffffff;
|
||||
@define-color view_bg_color rgba(46,47,61,0.98);
|
||||
@define-color view_fg_color #ffffff;
|
||||
@define-color headerbar_bg_color rgba(46,47,61,0.98);
|
||||
@define-color headerbar_fg_color #ffffff;
|
||||
@define-color headerbar_border_color #ffffff;
|
||||
@define-color headerbar_backdrop_color @window_bg_color;
|
||||
@define-color headerbar_shade_color rgba(46,47,61,0.05);
|
||||
@define-color card_bg_color rgba(180, 200, 255, 0.15);
|
||||
@define-color card_fg_color #ffffff;
|
||||
@define-color card_shade_color rgba(0, 0, 0, 0.36);
|
||||
@define-color dialog_bg_color rgba(46,47,61,0.98);
|
||||
@define-color dialog_fg_color #ffffff;
|
||||
@define-color popover_bg_color rgba(46,47,61,0.98);
|
||||
@define-color popover_fg_color #ffffff;
|
||||
@define-color shade_color rgba(0, 0, 0, 0);
|
||||
@define-color scrollbar_outline_color rgba(0, 0, 0, 0.5);
|
||||
/* 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 #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 */
|
||||
|
||||
/* 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