ags-config/style.scss
2025-04-21 00:36:59 +02:00

43 lines
No EOL
750 B
SCSS

// https://gitlab.gnome.org/GNOME/gtk/-/blob/gtk-3-24/gtk/theme/Adwaita/_colors-public.scss
$fg-color: #{"@theme_fg_color"};
$bg-color: #{"@theme_bg_color"};
window.Bar {
background: transparent;
color: $fg-color;
font-weight: bold;
font-size: 25px;
>centerbox {
background: $bg-color;
border-radius: 10px;
margin: 8px;
}
button {
border-radius: 8px;
margin: 2px;
}
.Workspaces {
button {
all: unset;
background-color: transparent;
margin: 2px;
padding: 2px;
&:hover label {
background-color: red;
border-color: $bg-color;
}
&:active label {
background-color: $fg-color;
}
.focused {
color: red;
}
}
}
}