seendiff 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +124 -0
- package/bin/seendiff.js +9 -0
- package/package.json +38 -0
- package/src/cli.js +216 -0
- package/src/git.js +615 -0
- package/src/highlight.js +220 -0
- package/src/server.js +580 -0
- package/src/store.js +128 -0
- package/src/theme-base.css +482 -0
- package/src/theme.js +14 -0
- package/src/walkthrough.js +338 -0
- package/static/fonts/JetBrainsMono.woff2 +0 -0
- package/static/fonts/LICENCE-UbuntuSansMono.txt +96 -0
- package/static/fonts/LICENSE-JetBrainsMono.txt +93 -0
- package/static/fonts/README.md +29 -0
- package/static/fonts/UbuntuSansMono.woff2 +0 -0
- package/static/index.html +3175 -0
|
@@ -0,0 +1,482 @@
|
|
|
1
|
+
/* light: pygments default */
|
|
2
|
+
pre { line-height: 125%; }
|
|
3
|
+
[data-theme="light"] .hl .hll { background-color: #ffffcc }
|
|
4
|
+
[data-theme="light"] .hl .c { color: #3D7B7B; font-style: italic } /* Comment */
|
|
5
|
+
[data-theme="light"] .hl .err { border: 1px solid #F00 } /* Error */
|
|
6
|
+
[data-theme="light"] .hl .k { color: #008000; font-weight: bold } /* Keyword */
|
|
7
|
+
[data-theme="light"] .hl .o { color: #666 } /* Operator */
|
|
8
|
+
[data-theme="light"] .hl .ch { color: #3D7B7B; font-style: italic } /* Comment.Hashbang */
|
|
9
|
+
[data-theme="light"] .hl .cm { color: #3D7B7B; font-style: italic } /* Comment.Multiline */
|
|
10
|
+
[data-theme="light"] .hl .cp { color: #9C6500 } /* Comment.Preproc */
|
|
11
|
+
[data-theme="light"] .hl .cpf { color: #3D7B7B; font-style: italic } /* Comment.PreprocFile */
|
|
12
|
+
[data-theme="light"] .hl .c1 { color: #3D7B7B; font-style: italic } /* Comment.Single */
|
|
13
|
+
[data-theme="light"] .hl .cs { color: #3D7B7B; font-style: italic } /* Comment.Special */
|
|
14
|
+
[data-theme="light"] .hl .gd { color: #A00000 } /* Generic.Deleted */
|
|
15
|
+
[data-theme="light"] .hl .ge { font-style: italic } /* Generic.Emph */
|
|
16
|
+
[data-theme="light"] .hl .ges { font-weight: bold; font-style: italic } /* Generic.EmphStrong */
|
|
17
|
+
[data-theme="light"] .hl .gr { color: #E40000 } /* Generic.Error */
|
|
18
|
+
[data-theme="light"] .hl .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
|
19
|
+
[data-theme="light"] .hl .gi { color: #008400 } /* Generic.Inserted */
|
|
20
|
+
[data-theme="light"] .hl .go { color: #717171 } /* Generic.Output */
|
|
21
|
+
[data-theme="light"] .hl .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
|
|
22
|
+
[data-theme="light"] .hl .gs { font-weight: bold } /* Generic.Strong */
|
|
23
|
+
[data-theme="light"] .hl .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
|
24
|
+
[data-theme="light"] .hl .gt { color: #04D } /* Generic.Traceback */
|
|
25
|
+
[data-theme="light"] .hl .kc { color: #008000; font-weight: bold } /* Keyword.Constant */
|
|
26
|
+
[data-theme="light"] .hl .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
|
|
27
|
+
[data-theme="light"] .hl .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
|
|
28
|
+
[data-theme="light"] .hl .kp { color: #008000 } /* Keyword.Pseudo */
|
|
29
|
+
[data-theme="light"] .hl .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
|
|
30
|
+
[data-theme="light"] .hl .kt { color: #B00040 } /* Keyword.Type */
|
|
31
|
+
[data-theme="light"] .hl .m { color: #666 } /* Literal.Number */
|
|
32
|
+
[data-theme="light"] .hl .s { color: #BA2121 } /* Literal.String */
|
|
33
|
+
[data-theme="light"] .hl .na { color: #687822 } /* Name.Attribute */
|
|
34
|
+
[data-theme="light"] .hl .nb { color: #008000 } /* Name.Builtin */
|
|
35
|
+
[data-theme="light"] .hl .nc { color: #00F; font-weight: bold } /* Name.Class */
|
|
36
|
+
[data-theme="light"] .hl .no { color: #800 } /* Name.Constant */
|
|
37
|
+
[data-theme="light"] .hl .nd { color: #A2F } /* Name.Decorator */
|
|
38
|
+
[data-theme="light"] .hl .ni { color: #717171; font-weight: bold } /* Name.Entity */
|
|
39
|
+
[data-theme="light"] .hl .ne { color: #CB3F38; font-weight: bold } /* Name.Exception */
|
|
40
|
+
[data-theme="light"] .hl .nf { color: #00F } /* Name.Function */
|
|
41
|
+
[data-theme="light"] .hl .nl { color: #767600 } /* Name.Label */
|
|
42
|
+
[data-theme="light"] .hl .nn { color: #00F; font-weight: bold } /* Name.Namespace */
|
|
43
|
+
[data-theme="light"] .hl .nt { color: #008000; font-weight: bold } /* Name.Tag */
|
|
44
|
+
[data-theme="light"] .hl .nv { color: #19177C } /* Name.Variable */
|
|
45
|
+
[data-theme="light"] .hl .ow { color: #A2F; font-weight: bold } /* Operator.Word */
|
|
46
|
+
[data-theme="light"] .hl .w { color: #BBB } /* Text.Whitespace */
|
|
47
|
+
[data-theme="light"] .hl .mb { color: #666 } /* Literal.Number.Bin */
|
|
48
|
+
[data-theme="light"] .hl .mf { color: #666 } /* Literal.Number.Float */
|
|
49
|
+
[data-theme="light"] .hl .mh { color: #666 } /* Literal.Number.Hex */
|
|
50
|
+
[data-theme="light"] .hl .mi { color: #666 } /* Literal.Number.Integer */
|
|
51
|
+
[data-theme="light"] .hl .mo { color: #666 } /* Literal.Number.Oct */
|
|
52
|
+
[data-theme="light"] .hl .sa { color: #BA2121 } /* Literal.String.Affix */
|
|
53
|
+
[data-theme="light"] .hl .sb { color: #BA2121 } /* Literal.String.Backtick */
|
|
54
|
+
[data-theme="light"] .hl .sc { color: #BA2121 } /* Literal.String.Char */
|
|
55
|
+
[data-theme="light"] .hl .dl { color: #BA2121 } /* Literal.String.Delimiter */
|
|
56
|
+
[data-theme="light"] .hl .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */
|
|
57
|
+
[data-theme="light"] .hl .s2 { color: #BA2121 } /* Literal.String.Double */
|
|
58
|
+
[data-theme="light"] .hl .se { color: #AA5D1F; font-weight: bold } /* Literal.String.Escape */
|
|
59
|
+
[data-theme="light"] .hl .sh { color: #BA2121 } /* Literal.String.Heredoc */
|
|
60
|
+
[data-theme="light"] .hl .si { color: #A45A77; font-weight: bold } /* Literal.String.Interpol */
|
|
61
|
+
[data-theme="light"] .hl .sx { color: #008000 } /* Literal.String.Other */
|
|
62
|
+
[data-theme="light"] .hl .sr { color: #A45A77 } /* Literal.String.Regex */
|
|
63
|
+
[data-theme="light"] .hl .s1 { color: #BA2121 } /* Literal.String.Single */
|
|
64
|
+
[data-theme="light"] .hl .ss { color: #19177C } /* Literal.String.Symbol */
|
|
65
|
+
[data-theme="light"] .hl .bp { color: #008000 } /* Name.Builtin.Pseudo */
|
|
66
|
+
[data-theme="light"] .hl .fm { color: #00F } /* Name.Function.Magic */
|
|
67
|
+
[data-theme="light"] .hl .vc { color: #19177C } /* Name.Variable.Class */
|
|
68
|
+
[data-theme="light"] .hl .vg { color: #19177C } /* Name.Variable.Global */
|
|
69
|
+
[data-theme="light"] .hl .vi { color: #19177C } /* Name.Variable.Instance */
|
|
70
|
+
[data-theme="light"] .hl .vm { color: #19177C } /* Name.Variable.Magic */
|
|
71
|
+
[data-theme="light"] .hl .il { color: #666 } /* Literal.Number.Integer.Long */
|
|
72
|
+
|
|
73
|
+
/* dark: pygments github-dark */
|
|
74
|
+
pre { line-height: 125%; }
|
|
75
|
+
[data-theme="dark"] .hl .hll { background-color: #6e7681 }
|
|
76
|
+
[data-theme="dark"] .hl .c { color: #8B949E; font-style: italic } /* Comment */
|
|
77
|
+
[data-theme="dark"] .hl .err { color: #F85149 } /* Error */
|
|
78
|
+
[data-theme="dark"] .hl .esc { color: #E6EDF3 } /* Escape */
|
|
79
|
+
[data-theme="dark"] .hl .g { color: #E6EDF3 } /* Generic */
|
|
80
|
+
[data-theme="dark"] .hl .k { color: #FF7B72 } /* Keyword */
|
|
81
|
+
[data-theme="dark"] .hl .l { color: #A5D6FF } /* Literal */
|
|
82
|
+
[data-theme="dark"] .hl .n { color: #E6EDF3 } /* Name */
|
|
83
|
+
[data-theme="dark"] .hl .o { color: #FF7B72; font-weight: bold } /* Operator */
|
|
84
|
+
[data-theme="dark"] .hl .x { color: #E6EDF3 } /* Other */
|
|
85
|
+
[data-theme="dark"] .hl .p { color: #E6EDF3 } /* Punctuation */
|
|
86
|
+
[data-theme="dark"] .hl .ch { color: #8B949E; font-style: italic } /* Comment.Hashbang */
|
|
87
|
+
[data-theme="dark"] .hl .cm { color: #8B949E; font-style: italic } /* Comment.Multiline */
|
|
88
|
+
[data-theme="dark"] .hl .cp { color: #8B949E; font-weight: bold; font-style: italic } /* Comment.Preproc */
|
|
89
|
+
[data-theme="dark"] .hl .cpf { color: #8B949E; font-style: italic } /* Comment.PreprocFile */
|
|
90
|
+
[data-theme="dark"] .hl .c1 { color: #8B949E; font-style: italic } /* Comment.Single */
|
|
91
|
+
[data-theme="dark"] .hl .cs { color: #8B949E; font-weight: bold; font-style: italic } /* Comment.Special */
|
|
92
|
+
[data-theme="dark"] .hl .gd { color: #FFA198; background-color: #490202 } /* Generic.Deleted */
|
|
93
|
+
[data-theme="dark"] .hl .ge { color: #E6EDF3; font-style: italic } /* Generic.Emph */
|
|
94
|
+
[data-theme="dark"] .hl .ges { color: #E6EDF3; font-weight: bold; font-style: italic } /* Generic.EmphStrong */
|
|
95
|
+
[data-theme="dark"] .hl .gr { color: #FFA198 } /* Generic.Error */
|
|
96
|
+
[data-theme="dark"] .hl .gh { color: #79C0FF; font-weight: bold } /* Generic.Heading */
|
|
97
|
+
[data-theme="dark"] .hl .gi { color: #56D364; background-color: #0F5323 } /* Generic.Inserted */
|
|
98
|
+
[data-theme="dark"] .hl .go { color: #8B949E } /* Generic.Output */
|
|
99
|
+
[data-theme="dark"] .hl .gp { color: #8B949E } /* Generic.Prompt */
|
|
100
|
+
[data-theme="dark"] .hl .gs { color: #E6EDF3; font-weight: bold } /* Generic.Strong */
|
|
101
|
+
[data-theme="dark"] .hl .gu { color: #79C0FF } /* Generic.Subheading */
|
|
102
|
+
[data-theme="dark"] .hl .gt { color: #FF7B72 } /* Generic.Traceback */
|
|
103
|
+
[data-theme="dark"] .hl .g-Underline { color: #E6EDF3; text-decoration: underline } /* Generic.Underline */
|
|
104
|
+
[data-theme="dark"] .hl .kc { color: #79C0FF } /* Keyword.Constant */
|
|
105
|
+
[data-theme="dark"] .hl .kd { color: #FF7B72 } /* Keyword.Declaration */
|
|
106
|
+
[data-theme="dark"] .hl .kn { color: #FF7B72 } /* Keyword.Namespace */
|
|
107
|
+
[data-theme="dark"] .hl .kp { color: #79C0FF } /* Keyword.Pseudo */
|
|
108
|
+
[data-theme="dark"] .hl .kr { color: #FF7B72 } /* Keyword.Reserved */
|
|
109
|
+
[data-theme="dark"] .hl .kt { color: #FF7B72 } /* Keyword.Type */
|
|
110
|
+
[data-theme="dark"] .hl .ld { color: #79C0FF } /* Literal.Date */
|
|
111
|
+
[data-theme="dark"] .hl .m { color: #A5D6FF } /* Literal.Number */
|
|
112
|
+
[data-theme="dark"] .hl .s { color: #A5D6FF } /* Literal.String */
|
|
113
|
+
[data-theme="dark"] .hl .na { color: #E6EDF3 } /* Name.Attribute */
|
|
114
|
+
[data-theme="dark"] .hl .nb { color: #E6EDF3 } /* Name.Builtin */
|
|
115
|
+
[data-theme="dark"] .hl .nc { color: #F0883E; font-weight: bold } /* Name.Class */
|
|
116
|
+
[data-theme="dark"] .hl .no { color: #79C0FF; font-weight: bold } /* Name.Constant */
|
|
117
|
+
[data-theme="dark"] .hl .nd { color: #D2A8FF; font-weight: bold } /* Name.Decorator */
|
|
118
|
+
[data-theme="dark"] .hl .ni { color: #FFA657 } /* Name.Entity */
|
|
119
|
+
[data-theme="dark"] .hl .ne { color: #F0883E; font-weight: bold } /* Name.Exception */
|
|
120
|
+
[data-theme="dark"] .hl .nf { color: #D2A8FF; font-weight: bold } /* Name.Function */
|
|
121
|
+
[data-theme="dark"] .hl .nl { color: #79C0FF; font-weight: bold } /* Name.Label */
|
|
122
|
+
[data-theme="dark"] .hl .nn { color: #FF7B72 } /* Name.Namespace */
|
|
123
|
+
[data-theme="dark"] .hl .nx { color: #E6EDF3 } /* Name.Other */
|
|
124
|
+
[data-theme="dark"] .hl .py { color: #79C0FF } /* Name.Property */
|
|
125
|
+
[data-theme="dark"] .hl .nt { color: #7EE787 } /* Name.Tag */
|
|
126
|
+
[data-theme="dark"] .hl .nv { color: #79C0FF } /* Name.Variable */
|
|
127
|
+
[data-theme="dark"] .hl .ow { color: #FF7B72; font-weight: bold } /* Operator.Word */
|
|
128
|
+
[data-theme="dark"] .hl .pm { color: #E6EDF3 } /* Punctuation.Marker */
|
|
129
|
+
[data-theme="dark"] .hl .w { color: #6E7681 } /* Text.Whitespace */
|
|
130
|
+
[data-theme="dark"] .hl .mb { color: #A5D6FF } /* Literal.Number.Bin */
|
|
131
|
+
[data-theme="dark"] .hl .mf { color: #A5D6FF } /* Literal.Number.Float */
|
|
132
|
+
[data-theme="dark"] .hl .mh { color: #A5D6FF } /* Literal.Number.Hex */
|
|
133
|
+
[data-theme="dark"] .hl .mi { color: #A5D6FF } /* Literal.Number.Integer */
|
|
134
|
+
[data-theme="dark"] .hl .mo { color: #A5D6FF } /* Literal.Number.Oct */
|
|
135
|
+
[data-theme="dark"] .hl .sa { color: #79C0FF } /* Literal.String.Affix */
|
|
136
|
+
[data-theme="dark"] .hl .sb { color: #A5D6FF } /* Literal.String.Backtick */
|
|
137
|
+
[data-theme="dark"] .hl .sc { color: #A5D6FF } /* Literal.String.Char */
|
|
138
|
+
[data-theme="dark"] .hl .dl { color: #79C0FF } /* Literal.String.Delimiter */
|
|
139
|
+
[data-theme="dark"] .hl .sd { color: #A5D6FF } /* Literal.String.Doc */
|
|
140
|
+
[data-theme="dark"] .hl .s2 { color: #A5D6FF } /* Literal.String.Double */
|
|
141
|
+
[data-theme="dark"] .hl .se { color: #79C0FF } /* Literal.String.Escape */
|
|
142
|
+
[data-theme="dark"] .hl .sh { color: #79C0FF } /* Literal.String.Heredoc */
|
|
143
|
+
[data-theme="dark"] .hl .si { color: #A5D6FF } /* Literal.String.Interpol */
|
|
144
|
+
[data-theme="dark"] .hl .sx { color: #A5D6FF } /* Literal.String.Other */
|
|
145
|
+
[data-theme="dark"] .hl .sr { color: #79C0FF } /* Literal.String.Regex */
|
|
146
|
+
[data-theme="dark"] .hl .s1 { color: #A5D6FF } /* Literal.String.Single */
|
|
147
|
+
[data-theme="dark"] .hl .ss { color: #A5D6FF } /* Literal.String.Symbol */
|
|
148
|
+
[data-theme="dark"] .hl .bp { color: #E6EDF3 } /* Name.Builtin.Pseudo */
|
|
149
|
+
[data-theme="dark"] .hl .fm { color: #D2A8FF; font-weight: bold } /* Name.Function.Magic */
|
|
150
|
+
[data-theme="dark"] .hl .vc { color: #79C0FF } /* Name.Variable.Class */
|
|
151
|
+
[data-theme="dark"] .hl .vg { color: #79C0FF } /* Name.Variable.Global */
|
|
152
|
+
[data-theme="dark"] .hl .vi { color: #79C0FF } /* Name.Variable.Instance */
|
|
153
|
+
[data-theme="dark"] .hl .vm { color: #79C0FF } /* Name.Variable.Magic */
|
|
154
|
+
[data-theme="dark"] .hl .il { color: #A5D6FF } /* Literal.Number.Integer.Long */
|
|
155
|
+
|
|
156
|
+
/* solarized-dark: pygments solarized-dark */
|
|
157
|
+
pre { line-height: 125%; }
|
|
158
|
+
[data-theme="solarized-dark"] .hl .hll { background-color: #073642 }
|
|
159
|
+
[data-theme="solarized-dark"] .hl .c { color: #586E75; font-style: italic } /* Comment */
|
|
160
|
+
[data-theme="solarized-dark"] .hl .err { color: #839496; background-color: #DC322F } /* Error */
|
|
161
|
+
[data-theme="solarized-dark"] .hl .esc { color: #839496 } /* Escape */
|
|
162
|
+
[data-theme="solarized-dark"] .hl .g { color: #839496 } /* Generic */
|
|
163
|
+
[data-theme="solarized-dark"] .hl .k { color: #859900 } /* Keyword */
|
|
164
|
+
[data-theme="solarized-dark"] .hl .l { color: #839496 } /* Literal */
|
|
165
|
+
[data-theme="solarized-dark"] .hl .n { color: #839496 } /* Name */
|
|
166
|
+
[data-theme="solarized-dark"] .hl .o { color: #586E75 } /* Operator */
|
|
167
|
+
[data-theme="solarized-dark"] .hl .x { color: #839496 } /* Other */
|
|
168
|
+
[data-theme="solarized-dark"] .hl .p { color: #839496 } /* Punctuation */
|
|
169
|
+
[data-theme="solarized-dark"] .hl .ch { color: #586E75; font-style: italic } /* Comment.Hashbang */
|
|
170
|
+
[data-theme="solarized-dark"] .hl .cm { color: #586E75; font-style: italic } /* Comment.Multiline */
|
|
171
|
+
[data-theme="solarized-dark"] .hl .cp { color: #D33682 } /* Comment.Preproc */
|
|
172
|
+
[data-theme="solarized-dark"] .hl .cpf { color: #586E75 } /* Comment.PreprocFile */
|
|
173
|
+
[data-theme="solarized-dark"] .hl .c1 { color: #586E75; font-style: italic } /* Comment.Single */
|
|
174
|
+
[data-theme="solarized-dark"] .hl .cs { color: #586E75; font-style: italic } /* Comment.Special */
|
|
175
|
+
[data-theme="solarized-dark"] .hl .gd { color: #DC322F } /* Generic.Deleted */
|
|
176
|
+
[data-theme="solarized-dark"] .hl .ge { color: #839496; font-style: italic } /* Generic.Emph */
|
|
177
|
+
[data-theme="solarized-dark"] .hl .ges { color: #839496; font-weight: bold; font-style: italic } /* Generic.EmphStrong */
|
|
178
|
+
[data-theme="solarized-dark"] .hl .gr { color: #DC322F } /* Generic.Error */
|
|
179
|
+
[data-theme="solarized-dark"] .hl .gh { color: #839496; font-weight: bold } /* Generic.Heading */
|
|
180
|
+
[data-theme="solarized-dark"] .hl .gi { color: #859900 } /* Generic.Inserted */
|
|
181
|
+
[data-theme="solarized-dark"] .hl .go { color: #839496 } /* Generic.Output */
|
|
182
|
+
[data-theme="solarized-dark"] .hl .gp { color: #268BD2; font-weight: bold } /* Generic.Prompt */
|
|
183
|
+
[data-theme="solarized-dark"] .hl .gs { color: #839496; font-weight: bold } /* Generic.Strong */
|
|
184
|
+
[data-theme="solarized-dark"] .hl .gu { color: #839496; text-decoration: underline } /* Generic.Subheading */
|
|
185
|
+
[data-theme="solarized-dark"] .hl .gt { color: #268BD2 } /* Generic.Traceback */
|
|
186
|
+
[data-theme="solarized-dark"] .hl .kc { color: #2AA198 } /* Keyword.Constant */
|
|
187
|
+
[data-theme="solarized-dark"] .hl .kd { color: #2AA198 } /* Keyword.Declaration */
|
|
188
|
+
[data-theme="solarized-dark"] .hl .kn { color: #CB4B16 } /* Keyword.Namespace */
|
|
189
|
+
[data-theme="solarized-dark"] .hl .kp { color: #859900 } /* Keyword.Pseudo */
|
|
190
|
+
[data-theme="solarized-dark"] .hl .kr { color: #859900 } /* Keyword.Reserved */
|
|
191
|
+
[data-theme="solarized-dark"] .hl .kt { color: #B58900 } /* Keyword.Type */
|
|
192
|
+
[data-theme="solarized-dark"] .hl .ld { color: #839496 } /* Literal.Date */
|
|
193
|
+
[data-theme="solarized-dark"] .hl .m { color: #2AA198 } /* Literal.Number */
|
|
194
|
+
[data-theme="solarized-dark"] .hl .s { color: #2AA198 } /* Literal.String */
|
|
195
|
+
[data-theme="solarized-dark"] .hl .na { color: #839496 } /* Name.Attribute */
|
|
196
|
+
[data-theme="solarized-dark"] .hl .nb { color: #268BD2 } /* Name.Builtin */
|
|
197
|
+
[data-theme="solarized-dark"] .hl .nc { color: #268BD2 } /* Name.Class */
|
|
198
|
+
[data-theme="solarized-dark"] .hl .no { color: #268BD2 } /* Name.Constant */
|
|
199
|
+
[data-theme="solarized-dark"] .hl .nd { color: #268BD2 } /* Name.Decorator */
|
|
200
|
+
[data-theme="solarized-dark"] .hl .ni { color: #268BD2 } /* Name.Entity */
|
|
201
|
+
[data-theme="solarized-dark"] .hl .ne { color: #268BD2 } /* Name.Exception */
|
|
202
|
+
[data-theme="solarized-dark"] .hl .nf { color: #268BD2 } /* Name.Function */
|
|
203
|
+
[data-theme="solarized-dark"] .hl .nl { color: #268BD2 } /* Name.Label */
|
|
204
|
+
[data-theme="solarized-dark"] .hl .nn { color: #268BD2 } /* Name.Namespace */
|
|
205
|
+
[data-theme="solarized-dark"] .hl .nx { color: #839496 } /* Name.Other */
|
|
206
|
+
[data-theme="solarized-dark"] .hl .py { color: #839496 } /* Name.Property */
|
|
207
|
+
[data-theme="solarized-dark"] .hl .nt { color: #268BD2 } /* Name.Tag */
|
|
208
|
+
[data-theme="solarized-dark"] .hl .nv { color: #268BD2 } /* Name.Variable */
|
|
209
|
+
[data-theme="solarized-dark"] .hl .ow { color: #859900 } /* Operator.Word */
|
|
210
|
+
[data-theme="solarized-dark"] .hl .pm { color: #839496 } /* Punctuation.Marker */
|
|
211
|
+
[data-theme="solarized-dark"] .hl .w { color: #839496 } /* Text.Whitespace */
|
|
212
|
+
[data-theme="solarized-dark"] .hl .mb { color: #2AA198 } /* Literal.Number.Bin */
|
|
213
|
+
[data-theme="solarized-dark"] .hl .mf { color: #2AA198 } /* Literal.Number.Float */
|
|
214
|
+
[data-theme="solarized-dark"] .hl .mh { color: #2AA198 } /* Literal.Number.Hex */
|
|
215
|
+
[data-theme="solarized-dark"] .hl .mi { color: #2AA198 } /* Literal.Number.Integer */
|
|
216
|
+
[data-theme="solarized-dark"] .hl .mo { color: #2AA198 } /* Literal.Number.Oct */
|
|
217
|
+
[data-theme="solarized-dark"] .hl .sa { color: #2AA198 } /* Literal.String.Affix */
|
|
218
|
+
[data-theme="solarized-dark"] .hl .sb { color: #2AA198 } /* Literal.String.Backtick */
|
|
219
|
+
[data-theme="solarized-dark"] .hl .sc { color: #2AA198 } /* Literal.String.Char */
|
|
220
|
+
[data-theme="solarized-dark"] .hl .dl { color: #2AA198 } /* Literal.String.Delimiter */
|
|
221
|
+
[data-theme="solarized-dark"] .hl .sd { color: #586E75 } /* Literal.String.Doc */
|
|
222
|
+
[data-theme="solarized-dark"] .hl .s2 { color: #2AA198 } /* Literal.String.Double */
|
|
223
|
+
[data-theme="solarized-dark"] .hl .se { color: #2AA198 } /* Literal.String.Escape */
|
|
224
|
+
[data-theme="solarized-dark"] .hl .sh { color: #2AA198 } /* Literal.String.Heredoc */
|
|
225
|
+
[data-theme="solarized-dark"] .hl .si { color: #2AA198 } /* Literal.String.Interpol */
|
|
226
|
+
[data-theme="solarized-dark"] .hl .sx { color: #2AA198 } /* Literal.String.Other */
|
|
227
|
+
[data-theme="solarized-dark"] .hl .sr { color: #CB4B16 } /* Literal.String.Regex */
|
|
228
|
+
[data-theme="solarized-dark"] .hl .s1 { color: #2AA198 } /* Literal.String.Single */
|
|
229
|
+
[data-theme="solarized-dark"] .hl .ss { color: #2AA198 } /* Literal.String.Symbol */
|
|
230
|
+
[data-theme="solarized-dark"] .hl .bp { color: #268BD2 } /* Name.Builtin.Pseudo */
|
|
231
|
+
[data-theme="solarized-dark"] .hl .fm { color: #268BD2 } /* Name.Function.Magic */
|
|
232
|
+
[data-theme="solarized-dark"] .hl .vc { color: #268BD2 } /* Name.Variable.Class */
|
|
233
|
+
[data-theme="solarized-dark"] .hl .vg { color: #268BD2 } /* Name.Variable.Global */
|
|
234
|
+
[data-theme="solarized-dark"] .hl .vi { color: #268BD2 } /* Name.Variable.Instance */
|
|
235
|
+
[data-theme="solarized-dark"] .hl .vm { color: #268BD2 } /* Name.Variable.Magic */
|
|
236
|
+
[data-theme="solarized-dark"] .hl .il { color: #2AA198 } /* Literal.Number.Integer.Long */
|
|
237
|
+
|
|
238
|
+
/* solarized-light: pygments solarized-light */
|
|
239
|
+
pre { line-height: 125%; }
|
|
240
|
+
[data-theme="solarized-light"] .hl .hll { background-color: #eee8d5 }
|
|
241
|
+
[data-theme="solarized-light"] .hl .c { color: #93A1A1; font-style: italic } /* Comment */
|
|
242
|
+
[data-theme="solarized-light"] .hl .err { color: #657B83; background-color: #DC322F } /* Error */
|
|
243
|
+
[data-theme="solarized-light"] .hl .esc { color: #657B83 } /* Escape */
|
|
244
|
+
[data-theme="solarized-light"] .hl .g { color: #657B83 } /* Generic */
|
|
245
|
+
[data-theme="solarized-light"] .hl .k { color: #859900 } /* Keyword */
|
|
246
|
+
[data-theme="solarized-light"] .hl .l { color: #657B83 } /* Literal */
|
|
247
|
+
[data-theme="solarized-light"] .hl .n { color: #657B83 } /* Name */
|
|
248
|
+
[data-theme="solarized-light"] .hl .o { color: #93A1A1 } /* Operator */
|
|
249
|
+
[data-theme="solarized-light"] .hl .x { color: #657B83 } /* Other */
|
|
250
|
+
[data-theme="solarized-light"] .hl .p { color: #657B83 } /* Punctuation */
|
|
251
|
+
[data-theme="solarized-light"] .hl .ch { color: #93A1A1; font-style: italic } /* Comment.Hashbang */
|
|
252
|
+
[data-theme="solarized-light"] .hl .cm { color: #93A1A1; font-style: italic } /* Comment.Multiline */
|
|
253
|
+
[data-theme="solarized-light"] .hl .cp { color: #D33682 } /* Comment.Preproc */
|
|
254
|
+
[data-theme="solarized-light"] .hl .cpf { color: #93A1A1 } /* Comment.PreprocFile */
|
|
255
|
+
[data-theme="solarized-light"] .hl .c1 { color: #93A1A1; font-style: italic } /* Comment.Single */
|
|
256
|
+
[data-theme="solarized-light"] .hl .cs { color: #93A1A1; font-style: italic } /* Comment.Special */
|
|
257
|
+
[data-theme="solarized-light"] .hl .gd { color: #DC322F } /* Generic.Deleted */
|
|
258
|
+
[data-theme="solarized-light"] .hl .ge { color: #657B83; font-style: italic } /* Generic.Emph */
|
|
259
|
+
[data-theme="solarized-light"] .hl .ges { color: #657B83; font-weight: bold; font-style: italic } /* Generic.EmphStrong */
|
|
260
|
+
[data-theme="solarized-light"] .hl .gr { color: #DC322F } /* Generic.Error */
|
|
261
|
+
[data-theme="solarized-light"] .hl .gh { color: #657B83; font-weight: bold } /* Generic.Heading */
|
|
262
|
+
[data-theme="solarized-light"] .hl .gi { color: #859900 } /* Generic.Inserted */
|
|
263
|
+
[data-theme="solarized-light"] .hl .go { color: #657B83 } /* Generic.Output */
|
|
264
|
+
[data-theme="solarized-light"] .hl .gp { color: #268BD2; font-weight: bold } /* Generic.Prompt */
|
|
265
|
+
[data-theme="solarized-light"] .hl .gs { color: #657B83; font-weight: bold } /* Generic.Strong */
|
|
266
|
+
[data-theme="solarized-light"] .hl .gu { color: #657B83; text-decoration: underline } /* Generic.Subheading */
|
|
267
|
+
[data-theme="solarized-light"] .hl .gt { color: #268BD2 } /* Generic.Traceback */
|
|
268
|
+
[data-theme="solarized-light"] .hl .kc { color: #2AA198 } /* Keyword.Constant */
|
|
269
|
+
[data-theme="solarized-light"] .hl .kd { color: #2AA198 } /* Keyword.Declaration */
|
|
270
|
+
[data-theme="solarized-light"] .hl .kn { color: #CB4B16 } /* Keyword.Namespace */
|
|
271
|
+
[data-theme="solarized-light"] .hl .kp { color: #859900 } /* Keyword.Pseudo */
|
|
272
|
+
[data-theme="solarized-light"] .hl .kr { color: #859900 } /* Keyword.Reserved */
|
|
273
|
+
[data-theme="solarized-light"] .hl .kt { color: #B58900 } /* Keyword.Type */
|
|
274
|
+
[data-theme="solarized-light"] .hl .ld { color: #657B83 } /* Literal.Date */
|
|
275
|
+
[data-theme="solarized-light"] .hl .m { color: #2AA198 } /* Literal.Number */
|
|
276
|
+
[data-theme="solarized-light"] .hl .s { color: #2AA198 } /* Literal.String */
|
|
277
|
+
[data-theme="solarized-light"] .hl .na { color: #657B83 } /* Name.Attribute */
|
|
278
|
+
[data-theme="solarized-light"] .hl .nb { color: #268BD2 } /* Name.Builtin */
|
|
279
|
+
[data-theme="solarized-light"] .hl .nc { color: #268BD2 } /* Name.Class */
|
|
280
|
+
[data-theme="solarized-light"] .hl .no { color: #268BD2 } /* Name.Constant */
|
|
281
|
+
[data-theme="solarized-light"] .hl .nd { color: #268BD2 } /* Name.Decorator */
|
|
282
|
+
[data-theme="solarized-light"] .hl .ni { color: #268BD2 } /* Name.Entity */
|
|
283
|
+
[data-theme="solarized-light"] .hl .ne { color: #268BD2 } /* Name.Exception */
|
|
284
|
+
[data-theme="solarized-light"] .hl .nf { color: #268BD2 } /* Name.Function */
|
|
285
|
+
[data-theme="solarized-light"] .hl .nl { color: #268BD2 } /* Name.Label */
|
|
286
|
+
[data-theme="solarized-light"] .hl .nn { color: #268BD2 } /* Name.Namespace */
|
|
287
|
+
[data-theme="solarized-light"] .hl .nx { color: #657B83 } /* Name.Other */
|
|
288
|
+
[data-theme="solarized-light"] .hl .py { color: #657B83 } /* Name.Property */
|
|
289
|
+
[data-theme="solarized-light"] .hl .nt { color: #268BD2 } /* Name.Tag */
|
|
290
|
+
[data-theme="solarized-light"] .hl .nv { color: #268BD2 } /* Name.Variable */
|
|
291
|
+
[data-theme="solarized-light"] .hl .ow { color: #859900 } /* Operator.Word */
|
|
292
|
+
[data-theme="solarized-light"] .hl .pm { color: #657B83 } /* Punctuation.Marker */
|
|
293
|
+
[data-theme="solarized-light"] .hl .w { color: #657B83 } /* Text.Whitespace */
|
|
294
|
+
[data-theme="solarized-light"] .hl .mb { color: #2AA198 } /* Literal.Number.Bin */
|
|
295
|
+
[data-theme="solarized-light"] .hl .mf { color: #2AA198 } /* Literal.Number.Float */
|
|
296
|
+
[data-theme="solarized-light"] .hl .mh { color: #2AA198 } /* Literal.Number.Hex */
|
|
297
|
+
[data-theme="solarized-light"] .hl .mi { color: #2AA198 } /* Literal.Number.Integer */
|
|
298
|
+
[data-theme="solarized-light"] .hl .mo { color: #2AA198 } /* Literal.Number.Oct */
|
|
299
|
+
[data-theme="solarized-light"] .hl .sa { color: #2AA198 } /* Literal.String.Affix */
|
|
300
|
+
[data-theme="solarized-light"] .hl .sb { color: #2AA198 } /* Literal.String.Backtick */
|
|
301
|
+
[data-theme="solarized-light"] .hl .sc { color: #2AA198 } /* Literal.String.Char */
|
|
302
|
+
[data-theme="solarized-light"] .hl .dl { color: #2AA198 } /* Literal.String.Delimiter */
|
|
303
|
+
[data-theme="solarized-light"] .hl .sd { color: #93A1A1 } /* Literal.String.Doc */
|
|
304
|
+
[data-theme="solarized-light"] .hl .s2 { color: #2AA198 } /* Literal.String.Double */
|
|
305
|
+
[data-theme="solarized-light"] .hl .se { color: #2AA198 } /* Literal.String.Escape */
|
|
306
|
+
[data-theme="solarized-light"] .hl .sh { color: #2AA198 } /* Literal.String.Heredoc */
|
|
307
|
+
[data-theme="solarized-light"] .hl .si { color: #2AA198 } /* Literal.String.Interpol */
|
|
308
|
+
[data-theme="solarized-light"] .hl .sx { color: #2AA198 } /* Literal.String.Other */
|
|
309
|
+
[data-theme="solarized-light"] .hl .sr { color: #CB4B16 } /* Literal.String.Regex */
|
|
310
|
+
[data-theme="solarized-light"] .hl .s1 { color: #2AA198 } /* Literal.String.Single */
|
|
311
|
+
[data-theme="solarized-light"] .hl .ss { color: #2AA198 } /* Literal.String.Symbol */
|
|
312
|
+
[data-theme="solarized-light"] .hl .bp { color: #268BD2 } /* Name.Builtin.Pseudo */
|
|
313
|
+
[data-theme="solarized-light"] .hl .fm { color: #268BD2 } /* Name.Function.Magic */
|
|
314
|
+
[data-theme="solarized-light"] .hl .vc { color: #268BD2 } /* Name.Variable.Class */
|
|
315
|
+
[data-theme="solarized-light"] .hl .vg { color: #268BD2 } /* Name.Variable.Global */
|
|
316
|
+
[data-theme="solarized-light"] .hl .vi { color: #268BD2 } /* Name.Variable.Instance */
|
|
317
|
+
[data-theme="solarized-light"] .hl .vm { color: #268BD2 } /* Name.Variable.Magic */
|
|
318
|
+
[data-theme="solarized-light"] .hl .il { color: #2AA198 } /* Literal.Number.Integer.Long */
|
|
319
|
+
|
|
320
|
+
/* space: pygments nord */
|
|
321
|
+
pre { line-height: 125%; }
|
|
322
|
+
[data-theme="space"] .hl .hll { background-color: #3B4252 }
|
|
323
|
+
[data-theme="space"] .hl .c { color: #616E87; font-style: italic } /* Comment */
|
|
324
|
+
[data-theme="space"] .hl .err { color: #BF616A } /* Error */
|
|
325
|
+
[data-theme="space"] .hl .esc { color: #D8DEE9 } /* Escape */
|
|
326
|
+
[data-theme="space"] .hl .g { color: #D8DEE9 } /* Generic */
|
|
327
|
+
[data-theme="space"] .hl .k { color: #81A1C1; font-weight: bold } /* Keyword */
|
|
328
|
+
[data-theme="space"] .hl .l { color: #D8DEE9 } /* Literal */
|
|
329
|
+
[data-theme="space"] .hl .n { color: #D8DEE9 } /* Name */
|
|
330
|
+
[data-theme="space"] .hl .o { color: #81A1C1; font-weight: bold } /* Operator */
|
|
331
|
+
[data-theme="space"] .hl .x { color: #D8DEE9 } /* Other */
|
|
332
|
+
[data-theme="space"] .hl .p { color: #ECEFF4 } /* Punctuation */
|
|
333
|
+
[data-theme="space"] .hl .ch { color: #616E87; font-style: italic } /* Comment.Hashbang */
|
|
334
|
+
[data-theme="space"] .hl .cm { color: #616E87; font-style: italic } /* Comment.Multiline */
|
|
335
|
+
[data-theme="space"] .hl .cp { color: #5E81AC; font-style: italic } /* Comment.Preproc */
|
|
336
|
+
[data-theme="space"] .hl .cpf { color: #616E87; font-style: italic } /* Comment.PreprocFile */
|
|
337
|
+
[data-theme="space"] .hl .c1 { color: #616E87; font-style: italic } /* Comment.Single */
|
|
338
|
+
[data-theme="space"] .hl .cs { color: #616E87; font-style: italic } /* Comment.Special */
|
|
339
|
+
[data-theme="space"] .hl .gd { color: #BF616A } /* Generic.Deleted */
|
|
340
|
+
[data-theme="space"] .hl .ge { color: #D8DEE9; font-style: italic } /* Generic.Emph */
|
|
341
|
+
[data-theme="space"] .hl .ges { color: #D8DEE9; font-weight: bold; font-style: italic } /* Generic.EmphStrong */
|
|
342
|
+
[data-theme="space"] .hl .gr { color: #BF616A } /* Generic.Error */
|
|
343
|
+
[data-theme="space"] .hl .gh { color: #88C0D0; font-weight: bold } /* Generic.Heading */
|
|
344
|
+
[data-theme="space"] .hl .gi { color: #A3BE8C } /* Generic.Inserted */
|
|
345
|
+
[data-theme="space"] .hl .go { color: #D8DEE9 } /* Generic.Output */
|
|
346
|
+
[data-theme="space"] .hl .gp { color: #616E88; font-weight: bold } /* Generic.Prompt */
|
|
347
|
+
[data-theme="space"] .hl .gs { color: #D8DEE9; font-weight: bold } /* Generic.Strong */
|
|
348
|
+
[data-theme="space"] .hl .gu { color: #88C0D0; font-weight: bold } /* Generic.Subheading */
|
|
349
|
+
[data-theme="space"] .hl .gt { color: #BF616A } /* Generic.Traceback */
|
|
350
|
+
[data-theme="space"] .hl .kc { color: #81A1C1; font-weight: bold } /* Keyword.Constant */
|
|
351
|
+
[data-theme="space"] .hl .kd { color: #81A1C1; font-weight: bold } /* Keyword.Declaration */
|
|
352
|
+
[data-theme="space"] .hl .kn { color: #81A1C1; font-weight: bold } /* Keyword.Namespace */
|
|
353
|
+
[data-theme="space"] .hl .kp { color: #81A1C1 } /* Keyword.Pseudo */
|
|
354
|
+
[data-theme="space"] .hl .kr { color: #81A1C1; font-weight: bold } /* Keyword.Reserved */
|
|
355
|
+
[data-theme="space"] .hl .kt { color: #81A1C1 } /* Keyword.Type */
|
|
356
|
+
[data-theme="space"] .hl .ld { color: #D8DEE9 } /* Literal.Date */
|
|
357
|
+
[data-theme="space"] .hl .m { color: #B48EAD } /* Literal.Number */
|
|
358
|
+
[data-theme="space"] .hl .s { color: #A3BE8C } /* Literal.String */
|
|
359
|
+
[data-theme="space"] .hl .na { color: #8FBCBB } /* Name.Attribute */
|
|
360
|
+
[data-theme="space"] .hl .nb { color: #81A1C1 } /* Name.Builtin */
|
|
361
|
+
[data-theme="space"] .hl .nc { color: #8FBCBB } /* Name.Class */
|
|
362
|
+
[data-theme="space"] .hl .no { color: #8FBCBB } /* Name.Constant */
|
|
363
|
+
[data-theme="space"] .hl .nd { color: #D08770 } /* Name.Decorator */
|
|
364
|
+
[data-theme="space"] .hl .ni { color: #D08770 } /* Name.Entity */
|
|
365
|
+
[data-theme="space"] .hl .ne { color: #BF616A } /* Name.Exception */
|
|
366
|
+
[data-theme="space"] .hl .nf { color: #88C0D0 } /* Name.Function */
|
|
367
|
+
[data-theme="space"] .hl .nl { color: #D8DEE9 } /* Name.Label */
|
|
368
|
+
[data-theme="space"] .hl .nn { color: #8FBCBB } /* Name.Namespace */
|
|
369
|
+
[data-theme="space"] .hl .nx { color: #D8DEE9 } /* Name.Other */
|
|
370
|
+
[data-theme="space"] .hl .py { color: #D8DEE9 } /* Name.Property */
|
|
371
|
+
[data-theme="space"] .hl .nt { color: #81A1C1 } /* Name.Tag */
|
|
372
|
+
[data-theme="space"] .hl .nv { color: #D8DEE9 } /* Name.Variable */
|
|
373
|
+
[data-theme="space"] .hl .ow { color: #81A1C1; font-weight: bold } /* Operator.Word */
|
|
374
|
+
[data-theme="space"] .hl .pm { color: #ECEFF4 } /* Punctuation.Marker */
|
|
375
|
+
[data-theme="space"] .hl .w { color: #D8DEE9 } /* Text.Whitespace */
|
|
376
|
+
[data-theme="space"] .hl .mb { color: #B48EAD } /* Literal.Number.Bin */
|
|
377
|
+
[data-theme="space"] .hl .mf { color: #B48EAD } /* Literal.Number.Float */
|
|
378
|
+
[data-theme="space"] .hl .mh { color: #B48EAD } /* Literal.Number.Hex */
|
|
379
|
+
[data-theme="space"] .hl .mi { color: #B48EAD } /* Literal.Number.Integer */
|
|
380
|
+
[data-theme="space"] .hl .mo { color: #B48EAD } /* Literal.Number.Oct */
|
|
381
|
+
[data-theme="space"] .hl .sa { color: #A3BE8C } /* Literal.String.Affix */
|
|
382
|
+
[data-theme="space"] .hl .sb { color: #A3BE8C } /* Literal.String.Backtick */
|
|
383
|
+
[data-theme="space"] .hl .sc { color: #A3BE8C } /* Literal.String.Char */
|
|
384
|
+
[data-theme="space"] .hl .dl { color: #A3BE8C } /* Literal.String.Delimiter */
|
|
385
|
+
[data-theme="space"] .hl .sd { color: #616E87 } /* Literal.String.Doc */
|
|
386
|
+
[data-theme="space"] .hl .s2 { color: #A3BE8C } /* Literal.String.Double */
|
|
387
|
+
[data-theme="space"] .hl .se { color: #EBCB8B } /* Literal.String.Escape */
|
|
388
|
+
[data-theme="space"] .hl .sh { color: #A3BE8C } /* Literal.String.Heredoc */
|
|
389
|
+
[data-theme="space"] .hl .si { color: #A3BE8C } /* Literal.String.Interpol */
|
|
390
|
+
[data-theme="space"] .hl .sx { color: #A3BE8C } /* Literal.String.Other */
|
|
391
|
+
[data-theme="space"] .hl .sr { color: #EBCB8B } /* Literal.String.Regex */
|
|
392
|
+
[data-theme="space"] .hl .s1 { color: #A3BE8C } /* Literal.String.Single */
|
|
393
|
+
[data-theme="space"] .hl .ss { color: #A3BE8C } /* Literal.String.Symbol */
|
|
394
|
+
[data-theme="space"] .hl .bp { color: #81A1C1 } /* Name.Builtin.Pseudo */
|
|
395
|
+
[data-theme="space"] .hl .fm { color: #88C0D0 } /* Name.Function.Magic */
|
|
396
|
+
[data-theme="space"] .hl .vc { color: #D8DEE9 } /* Name.Variable.Class */
|
|
397
|
+
[data-theme="space"] .hl .vg { color: #D8DEE9 } /* Name.Variable.Global */
|
|
398
|
+
[data-theme="space"] .hl .vi { color: #D8DEE9 } /* Name.Variable.Instance */
|
|
399
|
+
[data-theme="space"] .hl .vm { color: #D8DEE9 } /* Name.Variable.Magic */
|
|
400
|
+
[data-theme="space"] .hl .il { color: #B48EAD } /* Literal.Number.Integer.Long */
|
|
401
|
+
|
|
402
|
+
/* hailmary: pygments coffee */
|
|
403
|
+
pre { line-height: 125%; }
|
|
404
|
+
[data-theme="hailmary"] .hl .hll { background-color: #ddd0c0 }
|
|
405
|
+
[data-theme="hailmary"] .hl .c { color: #70757A } /* Comment */
|
|
406
|
+
[data-theme="hailmary"] .hl .err { color: #AF5F5F } /* Error */
|
|
407
|
+
[data-theme="hailmary"] .hl .esc { color: #DDD0C0 } /* Escape */
|
|
408
|
+
[data-theme="hailmary"] .hl .g { color: #DDD0C0 } /* Generic */
|
|
409
|
+
[data-theme="hailmary"] .hl .k { color: #919191 } /* Keyword */
|
|
410
|
+
[data-theme="hailmary"] .hl .l { color: #AF875F } /* Literal */
|
|
411
|
+
[data-theme="hailmary"] .hl .n { color: #DDD0C0 } /* Name */
|
|
412
|
+
[data-theme="hailmary"] .hl .o { color: #878787 } /* Operator */
|
|
413
|
+
[data-theme="hailmary"] .hl .x { color: #DDD0C0 } /* Other */
|
|
414
|
+
[data-theme="hailmary"] .hl .p { color: #DDD0C0 } /* Punctuation */
|
|
415
|
+
[data-theme="hailmary"] .hl .ch { color: #8F9F9F } /* Comment.Hashbang */
|
|
416
|
+
[data-theme="hailmary"] .hl .cm { color: #70757A } /* Comment.Multiline */
|
|
417
|
+
[data-theme="hailmary"] .hl .cp { color: #FDD0C0 } /* Comment.Preproc */
|
|
418
|
+
[data-theme="hailmary"] .hl .cpf { color: #C9B98F } /* Comment.PreprocFile */
|
|
419
|
+
[data-theme="hailmary"] .hl .c1 { color: #70757A } /* Comment.Single */
|
|
420
|
+
[data-theme="hailmary"] .hl .cs { color: #AF5F5F } /* Comment.Special */
|
|
421
|
+
[data-theme="hailmary"] .hl .gd { color: #BB6868 } /* Generic.Deleted */
|
|
422
|
+
[data-theme="hailmary"] .hl .ge { color: #DDD0C0; font-style: italic } /* Generic.Emph */
|
|
423
|
+
[data-theme="hailmary"] .hl .ges { color: #DDD0C0 } /* Generic.EmphStrong */
|
|
424
|
+
[data-theme="hailmary"] .hl .gr { color: #AF5F5F } /* Generic.Error */
|
|
425
|
+
[data-theme="hailmary"] .hl .gh { color: #DDD0C0 } /* Generic.Heading */
|
|
426
|
+
[data-theme="hailmary"] .hl .gi { color: #849155 } /* Generic.Inserted */
|
|
427
|
+
[data-theme="hailmary"] .hl .go { color: #DDD0C0 } /* Generic.Output */
|
|
428
|
+
[data-theme="hailmary"] .hl .gp { color: #DDD0C0 } /* Generic.Prompt */
|
|
429
|
+
[data-theme="hailmary"] .hl .gs { color: #DDD0C0; font-weight: bold } /* Generic.Strong */
|
|
430
|
+
[data-theme="hailmary"] .hl .gu { color: #DDD0C0 } /* Generic.Subheading */
|
|
431
|
+
[data-theme="hailmary"] .hl .gt { color: #AF5F5F } /* Generic.Traceback */
|
|
432
|
+
[data-theme="hailmary"] .hl .kc { color: #875F5F } /* Keyword.Constant */
|
|
433
|
+
[data-theme="hailmary"] .hl .kd { color: #875F5F } /* Keyword.Declaration */
|
|
434
|
+
[data-theme="hailmary"] .hl .kn { color: #875F5F } /* Keyword.Namespace */
|
|
435
|
+
[data-theme="hailmary"] .hl .kp { color: #919191 } /* Keyword.Pseudo */
|
|
436
|
+
[data-theme="hailmary"] .hl .kr { color: #B46276 } /* Keyword.Reserved */
|
|
437
|
+
[data-theme="hailmary"] .hl .kt { color: #AF875F } /* Keyword.Type */
|
|
438
|
+
[data-theme="hailmary"] .hl .ld { color: #AF875F } /* Literal.Date */
|
|
439
|
+
[data-theme="hailmary"] .hl .m { color: #87AFAF } /* Literal.Number */
|
|
440
|
+
[data-theme="hailmary"] .hl .s { color: #C9B98F } /* Literal.String */
|
|
441
|
+
[data-theme="hailmary"] .hl .na { color: #DDD0C0 } /* Name.Attribute */
|
|
442
|
+
[data-theme="hailmary"] .hl .nb { color: #DDD0C0 } /* Name.Builtin */
|
|
443
|
+
[data-theme="hailmary"] .hl .nc { color: #875F5F } /* Name.Class */
|
|
444
|
+
[data-theme="hailmary"] .hl .no { color: #AF8787 } /* Name.Constant */
|
|
445
|
+
[data-theme="hailmary"] .hl .nd { color: #FDD0C0 } /* Name.Decorator */
|
|
446
|
+
[data-theme="hailmary"] .hl .ni { color: #DDD0C0 } /* Name.Entity */
|
|
447
|
+
[data-theme="hailmary"] .hl .ne { color: #877575 } /* Name.Exception */
|
|
448
|
+
[data-theme="hailmary"] .hl .nf { color: #FDD0C0 } /* Name.Function */
|
|
449
|
+
[data-theme="hailmary"] .hl .nl { color: #DDD0C0 } /* Name.Label */
|
|
450
|
+
[data-theme="hailmary"] .hl .nn { color: #DDD0C0 } /* Name.Namespace */
|
|
451
|
+
[data-theme="hailmary"] .hl .nx { color: #DDD0C0 } /* Name.Other */
|
|
452
|
+
[data-theme="hailmary"] .hl .py { color: #DFAF87 } /* Name.Property */
|
|
453
|
+
[data-theme="hailmary"] .hl .nt { color: #87AFAF } /* Name.Tag */
|
|
454
|
+
[data-theme="hailmary"] .hl .nv { color: #DDD0C0 } /* Name.Variable */
|
|
455
|
+
[data-theme="hailmary"] .hl .ow { color: #878787 } /* Operator.Word */
|
|
456
|
+
[data-theme="hailmary"] .hl .pm { color: #DDD0C0 } /* Punctuation.Marker */
|
|
457
|
+
[data-theme="hailmary"] .hl .w { color: #DDD0C0 } /* Text.Whitespace */
|
|
458
|
+
[data-theme="hailmary"] .hl .mb { color: #87AFAF } /* Literal.Number.Bin */
|
|
459
|
+
[data-theme="hailmary"] .hl .mf { color: #87AFAF } /* Literal.Number.Float */
|
|
460
|
+
[data-theme="hailmary"] .hl .mh { color: #87AFAF } /* Literal.Number.Hex */
|
|
461
|
+
[data-theme="hailmary"] .hl .mi { color: #87AFAF } /* Literal.Number.Integer */
|
|
462
|
+
[data-theme="hailmary"] .hl .mo { color: #87AFAF } /* Literal.Number.Oct */
|
|
463
|
+
[data-theme="hailmary"] .hl .sa { color: #DFAF87 } /* Literal.String.Affix */
|
|
464
|
+
[data-theme="hailmary"] .hl .sb { color: #C9B98F } /* Literal.String.Backtick */
|
|
465
|
+
[data-theme="hailmary"] .hl .sc { color: #C9B98F } /* Literal.String.Char */
|
|
466
|
+
[data-theme="hailmary"] .hl .dl { color: #C9B98F } /* Literal.String.Delimiter */
|
|
467
|
+
[data-theme="hailmary"] .hl .sd { color: #878787 } /* Literal.String.Doc */
|
|
468
|
+
[data-theme="hailmary"] .hl .s2 { color: #C9B98F } /* Literal.String.Double */
|
|
469
|
+
[data-theme="hailmary"] .hl .se { color: #AF5F5F } /* Literal.String.Escape */
|
|
470
|
+
[data-theme="hailmary"] .hl .sh { color: #C9B98F } /* Literal.String.Heredoc */
|
|
471
|
+
[data-theme="hailmary"] .hl .si { color: #AF5F5F } /* Literal.String.Interpol */
|
|
472
|
+
[data-theme="hailmary"] .hl .sx { color: #FDD0C0 } /* Literal.String.Other */
|
|
473
|
+
[data-theme="hailmary"] .hl .sr { color: #AF5F5F } /* Literal.String.Regex */
|
|
474
|
+
[data-theme="hailmary"] .hl .s1 { color: #C9B98F } /* Literal.String.Single */
|
|
475
|
+
[data-theme="hailmary"] .hl .ss { color: #AF5F5F } /* Literal.String.Symbol */
|
|
476
|
+
[data-theme="hailmary"] .hl .bp { color: #87AFAF } /* Name.Builtin.Pseudo */
|
|
477
|
+
[data-theme="hailmary"] .hl .fm { color: #FDD0C0 } /* Name.Function.Magic */
|
|
478
|
+
[data-theme="hailmary"] .hl .vc { color: #DDD0C0 } /* Name.Variable.Class */
|
|
479
|
+
[data-theme="hailmary"] .hl .vg { color: #DDD0C0 } /* Name.Variable.Global */
|
|
480
|
+
[data-theme="hailmary"] .hl .vi { color: #DDD0C0 } /* Name.Variable.Instance */
|
|
481
|
+
[data-theme="hailmary"] .hl .vm { color: #DDD0C0 } /* Name.Variable.Magic */
|
|
482
|
+
[data-theme="hailmary"] .hl .il { color: #87AFAF } /* Literal.Number.Integer.Long */
|
package/src/theme.js
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { readFileSync } from "node:fs";
|
|
2
|
+
import path from "node:path";
|
|
3
|
+
import { fileURLToPath } from "node:url";
|
|
4
|
+
|
|
5
|
+
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
6
|
+
|
|
7
|
+
let cached = null;
|
|
8
|
+
|
|
9
|
+
export function themeCss() {
|
|
10
|
+
if (cached === null) {
|
|
11
|
+
cached = readFileSync(path.join(__dirname, "theme-base.css"), "utf8");
|
|
12
|
+
}
|
|
13
|
+
return cached;
|
|
14
|
+
}
|