summaryrefslogtreecommitdiff
path: root/config/waybar/style.css
blob: 601dd6d4a35af87d4e1c57f9ef001ff9f0edacb1 (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
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
@define-color border      #211e1e;
@define-color background  #111111;
@define-color surface0    #151111;
@define-color overlay0    #161515;
@define-color text        #e0def4;
@define-color text_dim    #6e6a86;
@define-color blue        #31748f;
@define-color green       #9ccfd8;
@define-color yellow      #f6c177;
@define-color peach       #ebbcba;
@define-color maroon      #e79591;
@define-color lavender    #c4a7e7;
@define-color pink        #eb6f92;
@define-color teal        #9ccfd8;
@define-color grey        #6e6a86;

* {
    border: none;
    font-family: "JetBrainsMono Nerd Font";
    font-size: 15px;
    min-height: 10px;
}

window#waybar {
	background: transparent;
}

#disk,
#pulseaudio,
#window,
#clock,
#network,
#battery,
#privacy,
#memory,
#cpu,
#workspaces,
#tray,
#bluetooth,
#tray menu {
	margin-top: 0;
    padding: 5px 10px;
    margin: 3px 0 13px 10px;
    background: @surface0;
    color: @peach;
    transition: 0.3s;
    border: 1.5px solid @border;
    border-radius: 8px;
}

#window { transition: none; }

window#waybar.empty #window {
    background: transparent;
    box-shadow: none;
    border: none;
}

#network { color: @peach; }
#clock { margin-right: 12px; color: @peach; }
#pulseaudio { color: @peach; }

#workspaces {
    margin-left: 12px;
    color: @peach;
}

#workspaces button {
    margin: 0;
    padding: 1px 3px;
    color: @peach;
    transition: none;
}

#workspaces button.empty { color: @peach; }
#workspaces button.active { color: @maroon; }
#workspaces button.urgent { color: @peach; }

#workspaces button:hover {
    background: @overlay0;
    color: @peach;
}