-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtwilight.css
128 lines (109 loc) · 2.5 KB
/
twilight.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/*
PasHi style sheet. Emulates the "twilight" syntax highlighter from Delphi
2010.
This file works correctly regardless of the setting of the legacy-css command.
DO NOT EDIT THIS FILE: PasHi may overwrite any changes to this file. If you
need a modified version of the file, make a copy in a different directory or
with a different name and edit that.
*/
.code-pascal,
/* DEPRECATED */ .pas-source {
background-color: black;
border: black 1px solid;
}
.code-pascal pre,
/* DEPRECATED */ .pas-source pre {
font-family: "Courier New", monospace;
font-size: 9pt;
margin: 0;
}
.code-pascal pre.line,
/* DEPRECATED */ .pas-source pre.line {
}
.code-pascal pre.odd-line,
/* DEPRECATED */ .pas-source pre.odd-line {
}
.code-pascal pre.even-line,
/* DEPRECATED */ .pas-source pre.even-line {
background-color: rgb(80,80,80); /* Twilight's "Line Highlight" */
}
.code-pascal .linenum,
/* DEPRECATED */ .pas-source .linenum {
border-right: 1px lime solid;
padding: 1px 4px 1px 0;
margin-right: 0.75em;
color: lime;
background-color: black;
}
.code-pascal .comment,
/* DEPRECATED */ .pas-comment {
color: lime;
font-weight: normal;
font-style: italic;
text-decoration: none;
}
.code-pascal .kwd,
/* DEPRECATED */ .pas-kwd {
color: aqua;
font-weight: normal;
font-style: normal;
text-decoration: none;
}
.code-pascal .ident,
/* DEPRECATED */ .pas-ident {
color: white;
font-weight: normal;
font-style: normal;
text-decoration: none;
}
.code-pascal .sym,
/* DEPRECATED */ .pas-sym {
color: silver;
font-weight: normal;
font-style: normal;
text-decoration: none;
}
.code-pascal .str,
/* DEPRECATED */ .pas-str {
color: yellow;
font-weight: normal;
font-style: normal;
text-decoration: none;
}
.code-pascal .num,
.code-pascal .float,
.code-pascal .hex,
/* DEPRECATED */ .pas-num,
/* DEPRECATED */ .pas-float,
/* DEPRECATED */ .pas-hex {
color: fuchsia;
font-weight: normal;
font-style: normal;
text-decoration: none;
}
.code-pascal .preproc,
/* DEPRECATED */ .pas-preproc {
color: green;
background-color: white;
font-weight: normal;
font-style: normal;
text-decoration: none;
}
.code-pascal .asm,
/* DEPRECATED */ .pas-asm {
color: lime;
font-weight: normal;
font-style: normal;
text-decoration: none;
}
.code-pascal .space,
/* DEPRECATED */ .pas-space {
}
.code-pascal .err,
/* DEPRECATED */ .pas-err { /* Twilight's "Illegal Char" */
color: white;
background-color: red;
font-weight: normal;
font-style: normal;
text-decoration: none;
}