blob: d25e5fc9c70928a88194b09ed2cfb0af32756806 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* waybar-theme-udt: stylesheet entry point.
* Copyright (C) 2026 Danilo M. <danix@danix.xyz>
* Licensed under the GNU General Public License v2 only.
*
* Load order matters: theme.css defines the colours every later file names,
* and modules.css overrides the shared pill geometry per module.
*/
/* Ignore the GTK theme: waybar inherits it otherwise, and it fights the
* pills for padding and background. */
* {
all: initial;
}
@import "theme.css"; /* generated by udt-palette, gitignored */
@import "fonts.css";
@import "global.css";
@import "pills.css";
@import "modules.css";
|