blob: ba5c6d89271dd3bafdf109002601f507f345ebb7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/* -----------------------------------------------------------------------------
* Styles
* -------------------------------------------------------------------------- */
/* COLORS */
/* Nord */
@define-color bg #191919;
@define-color light #212121;
/* Reset all styles */
* {
border: none;
border-radius: 0px;
min-height: 0;
font-family: "UbuntuMono Nerd Font Mono";
font-size: 14px;
font-weight: bold;
padding: 0;
}
/* The whole bar */
window#waybar {
background: @bg;
color: @light;
border: 2px solid #191919;
}
/* Each module */
#clock,
#taskbar button,
#workspaces,
#tray,
#battery,
#network,
#pulseaudio,
#backlight {
margin: 6px 6px 6px 0px;
padding: 2px 8px;
background: #212121;
color: #9b9b9b
}
#taskbar {
padding: 0 6px;
}
#window {
margin-right: 40px;
margin-left: 40px;
font-weight: normal;
}
|