index : dotfiles.git

ascending towards madness

author holly sparkles <sparkles@holly.sh> 2024-04-18 19:28:04.0 +00:00:00
committer holly sparkles <sparkles@holly.sh> 2024-04-18 19:28:04.0 +00:00:00
commit
1d825020984b4347fa1b5fdb16831242f5dbdf57 [patch]
tree
12a5ab84bd8d3e114cd0516155e83c9c14127595
parent
0450f724074865ceb1e50172d149bf8e46a15307
download
1d825020984b4347fa1b5fdb16831242f5dbdf57.tar.gz

add gtk3 stylesheet



Diff

 .config/gtk-3.0/gtk.css | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 52 insertions(+)

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;
}