-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.tcss
46 lines (39 loc) · 973 Bytes
/
style.tcss
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
/* Optional: Configure these values to change the colour of the UI */
/* ================================================================ */
$background-color: #181825;
$text-color: #f2cdcd;
$boarder-color: #f5c2e7;
$footer-background-color: #1e1e2e;
$footer-text-color: #f38ba8;
/* ================================================================ */
Screen {
align: center middle;
color: $text-color;
background: $background-color
}
#player {
width: 60;
height: 10;
border: $text-color;
padding: 1 2;
}
Footer {
height: 1;
dock: bottom;
background: $footer-background-color;
}
FooterKey {
color: $text-color;
background: $footer-background-color
}
FooterKey {
width: auto;
height: 1;
background: $footer-background-color;
color: $text-color;
.footer-key--key {
color: $footer-text-color;
background: $footer-background-color;
text-style: bold;
padding: 0 1;
}}