-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
95 lines (72 loc) · 1.56 KB
/
style.css
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
@define-color critical #ff0000;
@define-color warning #f3f809;
@define-color fgcolor #ffffff;
@define-color alert #df3320;
@define-color background #002D38;
@define-color foreground #839495;
@define-color black #00141a;
@define-color red #dc312e;
@define-color green #859900;
@define-color yellow #b38600;
@define-color blue #278bd3;
@define-color magenta #d33682;
@define-color cyan #2aa298;
@define-color white #ede7d4;
* {
font-family: "monoki nerd font", "Font Awesome 5 Free", sans-serif;
font-size: 16px;
}
window#waybar {
color: @foreground;
background-color: @background;
}
#clock,
#battery,
#cpu,
#pulseaudio,
#custom-pacman,
#network {
color: @background;
background-color: @blue;
padding: 0px 6px 0px 6px;
margin: 5px 3px 5px 3px;
border-radius: 5px;
}
#workspaces {
color: @blue;
padding: 0px 1px;
margin: 2px 1px 3px 1px;
border: 0px;
border-radius: 15px;
font-weight: bold;
font-style: normal;
font-size: 16px;
}
#workspaces button {
color: @blue;
padding: 4px 3px 0px 3px;
margin: 3px 3px;
border: 0px;
border-radius: 15px;
transition: all 0.3s ease-in-out;
}
#workspaces button.active {
color: @background;
background: @yellow;
border-radius: 15px;
min-width: 30px;
transition: all 0.3s ease-in-out;
}
#workspaces button:hover {
color: @black;
background: @blue;
border-radius: 15px;
box-shadow: none;
text-shadow: none;
}
#window {
color: @white;
}
window#waybar.empty #window {
background: transparent;
}