final move of files
[web.mtrack] / MTrack / hyperlight / wezterm.css
1 /* For licensing and copyright terms, see the file named LICENSE */
2 /* A colour scheme based on Wez Furlong's terminal and vim preferences */
3
4 .source-code.wezterm {
5         background: black;
6         color: rgb(179,179,179);
7 }
8
9 .source-code.wezterm .php {
10         /* tomato */
11         color: rgb(255, 85, 85);
12 }
13
14 .source-code.wezterm .comment {
15         /* cyan */
16         color: rgb(85, 255, 255);
17 }
18
19 .source-code.wezterm .comment .todo {
20         /* yellow background */
21         background-color: rgb(255, 255, 85);
22         color: black;
23 }
24
25 .source-code.wezterm .tag {
26         /* cyan */
27         color: rgb(85, 255, 255);
28 }
29 .source-code.wezterm .php .tag {
30         /* yellow */
31         color: rgb(255, 255, 85);
32 }
33
34 .source-code.wezterm .identifier {
35         /* regular grey text */
36         color: rgb(179,179,179);
37 }
38
39 .source-code.wezterm .tag .identifier {
40         /* cyan */
41         color: rgb(85, 255, 255);
42 }
43
44 .source-code.wezterm .keyword {
45         /* yellow */
46         color: rgb(255, 255, 85);
47 }
48
49 .source-code.wezterm .preprocessor,
50 .source-code.wezterm .preprocessor .identifier,
51 .source-code.wezterm .keyword.operator,
52 .source-code.wezterm .keyword.builtin {
53         /* blue */
54         color: rgb(85, 85, 204);
55 }
56 .source-code.wezterm .attribute,
57 .source-code.wezterm .keyword.type {
58         /* green */
59         color: rgb(85, 204, 85);
60 }
61 .source-code.wezterm .number,
62 .source-code.wezterm .keyword.literal,
63 .source-code.wezterm .string
64 {
65         /* purple */
66         color: rgb(255, 85, 255);
67 }
68
69 .source-code.wezterm::-moz-selection,
70 .source-code.wezterm span::-moz-selection
71 {
72         background-color: rgb(77, 77, 255);
73 }
74
75 .source-code.wezterm::selection,
76 .source-code.wezterm span::selection
77 {
78         background-color: rgb(77, 77, 255);
79 }
80
81 .source-code.wezterm .preprocessor .tag,
82 .source-code.wezterm .preprocessor .number {
83         /* purple like a string.
84          * this triggers for things like: #include "name"
85          */
86         color: rgb(255, 85, 255);
87 }
88 /* vim:ts=2:sw=2:noet:
89  * */
90