-
Notifications
You must be signed in to change notification settings - Fork 0
/
tabs.css
54 lines (51 loc) · 979 Bytes
/
tabs.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
/*
** tabs.css
*/
/* add colour to tab if running
**
** class name is derived from tab title
** with:
** letter/digit -> same, case preserved
** space, comma, underscore, period -> "_" underscore
** other punctuation -> "-" dash(minus)
*/
.TAB-Project_1.item_button,
.TAB-Project_1.running {
color: brown;
}
.TAB-Project_2.item_button,
.TAB-Project_2.running {
color: red;
}
.TAB-Project_3.item_button,
.TAB-Project_3.running {
color: orange;
}
.TAB-Project_4.item_button,
.TAB-Project_4.running {
color: gold;
}
.TAB-Project_5.item_button,
.TAB-Project_5.running {
color: green;
}
.TAB-shell.item_button,
.TAB-shell.running {
color: blue;
}
.TAB-EMACS.item_button,
.TAB-EMACS.running {
color: purple;
}
.TAB-Work.item_button,
.TAB-Work.running {
color: ForestGreen;
}
.TAB-xterm-etc.item_button,
.TAB-xterm-etc.running {
color: orange;
}
.TAB-Vi_IMproved.item_button,
.TAB-Vi_IMproved.running {
color: coral;
}