From 1d825020984b4347fa1b5fdb16831242f5dbdf57 Mon Sep 17 00:00:00 2001 From: holly sparkles Date: Thu, 18 Apr 2024 21:28:04 +0200 Subject: [PATCH] add gtk3 stylesheet --- .config/gtk-3.0/gtk.css | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 .config/gtk-3.0/gtk.css diff --git a/.config/gtk-3.0/gtk.css b/.config/gtk-3.0/gtk.css new file mode 100644 index 0000000..16d04f7 --- /dev/null +++ b/.config/gtk-3.0/gtk.css @@ -0,0 +1,52 @@ +/** unstyle the panel **/ +.xfce4-panel { + border-radius: 0px; +} + +.xfce4-panel * { + /* verdana 10 was THE font of my childhood, i still use it sometimes */ + font-size: 10px; + font-family: Verdana; +} + +/** style the window list **/ +.tasklist .toggle { + /* catppuccin mocha */ + color: #f8f8f2; +} + +.tasklist .toggle:active { + /* catppuccin mocha */ +} + +.tasklist .toggle:checked { + /* catppuccin mocha */ + color: #74c7ec; + background-color: #1e1e2e; + border-bottom: 2px solid #74c7ec; +} + +.tasklist .toggle:hover { + /* catppuccin mocha */ + color: #cdd6f4; + background-color: #585b70; + border-bottom: 2px solid #cdd6f4; +} + +/** client side decorations **/ +.csd menu, +.csd .menu, +.csd .context-menu { + border-radius: 0px; +} + +.csd.popup decoration { + border-radius: 0px; +} + +/** remove the border from menu items to match the csd **/ +menu menuitem, +.menu menuitem, +.context-menu menuitem { + border-radius: 0px; +} -- libgit2 1.7.2