一个改变AcWing代码主题的样式

update 2022/3/27 : 这玩意跟一坨 shit 一样

AcWing 自带的代码编辑器主题并不支持高度个性化,云端编辑器主题也改不了,用起来非常不爽 \jk 。

所以我就瞎折腾了一段时间,搞了一个改变 AcWing 题目下方编辑器 、AC Editor 、Markdown 代码框的样式。

效果珂以康这里:百万特效

需要浏览器扩展 Stylish / Stylus ,不会使用的可以康这里

本人并不怎么会 CSS,写的全是辣鸡代码,珂能有非常多的 BUG,但我用下来也还能接受。

会覆盖所有原生主题, (但建议选择 Monokai,防止一些我也不知道的奇奇怪怪的问题) 想使用原生主题请自行关闭样式。

样式目前只自带 Mariana 、Darcula、Obsidian ,当然你可以通过更改颜色来个性化新主题,修改主题只需要把:root{...}的内容更改即可。

源码(三个主题都在里面,全部都注释了,所以直接使用会一片白,想用那个去掉注释即可)。

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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
/* ==UserStyle==
@name Bace
@namespace USO Archive
@author 歪逼
@description 改变 AcWing 题目下方编辑器主题
@version 2.6
@license NO-REDISTRIBUTION
@preprocessor uso

==/UserStyle== */
/* Mariana */
/* :root {
--normal-font: rgb(230, 230, 230);
--left-and-right-paren: rgb(230, 230, 230);
--keyword: rgb(198, 149, 198);
--number-and-angle-brackets: rgb(239, 165, 79);
--things-in-qutation-marks: rgb(153, 199, 148);
--define-var-and-function: rgb(198, 149, 198);
--using-function: rgb(102, 153, 204);
--qutation-marks: rgb(96, 180, 180);
--operator: rgb(249, 123, 87);
--comma-and-semicolons: rgb(166, 172, 185);
--note: rgb(166, 172, 185);
--background: rgb(48, 56, 65);
--text-that-choosed: rgb(67, 76, 87);
--line-that-cursor-in: rgb(48, 56, 65);
--font-of-row-number: rgb(132, 139, 149);
--background-of-row-number: rgb(48, 56, 65);
--bu-hui-fan-yi: rgb(76, 88, 99);
--you-bu-hui-fan: rgb(132, 139, 149);
--hljs-keyword: rgb(198, 149, 198);
--hljs-meta: rgb(198, 149, 198);
--hljs-meta-keyword: rgb(198, 149, 198);
--hljs-meta-string: rgb(153, 199, 148);
--hljs-title: rgb(96, 180, 180);
--hljs-comment: rgb(166, 172, 185);
--hljs-built_in: rgb(102, 153, 204);
--hljs-string: rgb(153, 199, 148);
--hljs-number: rgb(239, 165, 79);
--hljs-function: rgb(198, 149, 198);
--hljs-params: rgb(230, 230, 230);
--hljs-code: rgb(230, 230, 230);
--hljs-cpp-background: rgb(48, 56, 65);
--hljs-literal: rgb(236, 96, 102);
--hljs-selection: rgb(67, 76, 87);
} */
/* Darcula */
/* :root {
--normal-font : #a9b7c6;
--left-and-right-paren : #a9b7c6;
--keyword : #cc7832;
--number-and-angle-brackets : #6897bb;
--things-in-qutation-marks : rgb(105,134,88);
--define-var-and-function : #cc7832;
--using-function : #a9b7c6;
--qutation-marks : #6a8759;
--operator : #a9b7c6;
--comma-and-semicolons : #cc7832;
--note : #787878;
--background : rgb(43,43,43);
--text-that-choosed : rgb(33,66,131);
--line-that-cursor-in : rgb(50,50,50);
--font-of-row-number : rgb(92,97,99);
--background-of-row-number : rgb(49,51,53);
--bu-hui-fan-yi : rgb(50,50,50);
--you-bu-hui-fan : rgb(155, 155, 155);
--hljs-keyword : #cc7832;
--hljs-meta : #6a8759;
--hljs-meta-keyword : #cc7832;
--hljs-meta-string : #cc7832;
--hljs-title : rgb(254,171,75);
--hljs-comment : #787878;
--hljs-built_in : #a9b7c6;
--hljs-string : rgb(105,134,88);
--hljs-number : #6897bb;
--hljs-function : #cc7832;
--hljs-params : #a9b7c6;
--hljs-code : #a9b7c6;
--hljs-cpp-background : rgb(43,43,43);
--hljs-literal : #6897bb;
--hljs-selection : rgb(33,66,131);
} */
/* Obsidian */
/* :root {
--normal-font : rgb(224, 226, 228);
--left-and-right-paren : rgb(232, 226, 183);
--keyword : rgb(160, 130, 189);
--number-and-angle-brackets : rgb(255, 205, 34);
--things-in-qutation-marks : rgb(236, 118, 0);
--define-var-and-function : rgb(103, 140, 177);
--using-function : rgb(103, 140, 177);
--qutation-marks : rgb(236, 118, 0);
--operator : rgb(232, 226, 183);
--comma-and-semicolons : rgb(232, 226, 183);
--note : rgb(102, 116, 123);
--background : rgb(41, 49, 52);
--text-that-choosed : rgb(64, 78, 81);
--line-that-cursor-in : rgb(0, 0, 0);
--font-of-row-number : rgb(106, 128, 136);
--background-of-row-number : rgb(47, 56, 60);
--bu-hui-fan-yi : rgb(47, 56, 60);
--you-bu-hui-fan : rgb(106, 128, 136);
--hljs-keyword : rgb(103, 140, 177);
--hljs-meta : rgb(160, 130, 189);
--hljs-meta-keyword : rgb(160, 130, 189);
--hljs-meta-string : rgb(255, 205, 34);
--hljs-title : rgb(224, 226, 228);
--hljs-comment : rgb(102, 116, 123);
--hljs-built_in : rgb(160, 130, 189);
--hljs-string : rgb(236, 118, 0);
--hljs-number : rgb(255, 205, 34);
--hljs-function : rgb(160, 130, 189);
--hljs-params : rgb(224, 226, 228);
--hljs-code : rgb(224, 226, 228);
--hljs-cpp-background : rgb(41, 49, 52);
--hljs-literal : rgb(255, 205, 34);
--hljs-selection : rgb(64, 78, 81);
} */
.ace_identifier {
/*普通字*/
color: var(--normal-font) !important;
}
.ace_paren.ace_lparen,
.ace_paren.ace_rparen {
/*左右括号*/
color: var(--left-and-right-paren) !important;
}
.ace_keyword,
.ace_meta.ace_tag,
.ace_storage {
/* 关键字*/
color: var(--keyword) !important;
}
.ace_constant.ace_character,
.ace_constant.ace_other,
.ace_constant.ace_numeric {
/* 数字、尖括号内容*/
color: var(--number-and-angle-brackets) !important;
}
.ace_constant.ace_language,
.ace_string {
/*引号内容*/
color: var(--things-in-qutation-marks) !important;
}
.ace_storage.ace_type,
.ace_support.ace_class,
.ace_support.ace_type {
/*变量、函数定义*/
color: var(--define-var-and-function) !important;
}
.ace_support.ace_function {
/* 函数调用*/
color: var(--using-function) !important;
}
.ace_string.ace_start,
.ace_string.ace_end {
/* 引号*/
color: var(--qutation-marks) !important;
}
.ace_operator {
/* 运算符*/
color: var(--operator) !important;
}
.ace_punctuation {
/* 逗号分号*/
color: var(--comma-and-semicolons) !important;
}
.ace_comment {
/* 注释*/
color: var(--note) !important;
}
.ace-monokai,
.ace_scroller {
/* 背景*/
background-color: var(--background) !important;
}
.ace_selection {
/*选中文本背景颜色*/
background: var(--text-that-choosed) !important;
}
.ace_marker-layer .ace_active-line {
/* 光标所在行背景颜色 */
background: var(--line-that-cursor-in) !important;
}
.ace_gutter-cell,
.ace_gutter {
/* 行数显示栏字体*/
color: var(--font-of-row-number) !important;
/* 行数显示栏背景*/
background: var(--background-of-row-number) !important;
}
.ace-tm .ace_cursor {
/*光标颜色*/
color : white!important;
}
.ace_text {
color: var(--normal-font) !important;
}
.ace_gutter-active-line {
/* 光标所在行行数显示栏颜色修改 */
background-color: var(--bu-hui-fan-yi) !important;
color: var(--you-bu-hui-fan) !important;
}
.ace-tm .ace_indent-guide {
/*对齐线(因为不会改所以就把它删掉了/kk*/
background:url() right repeat-y;
}
/* 一下为 Markdown 代码框的主题修改 */
.hljs-keyword {
/* 关键字 */
color: var(--hljs-keyword) !important;
}
.hljs-meta,
.hljs-section {
/* include 的 # 和 define 、 typedef 的一些东西 */
color: var(--hljs-meta) !important;
}
.hljs-meta-keyword {
/* 定义函数时的函数名 */
color: var(--hljs-meta-keyword) !important;
}
.hljs-meta-string {
/* 定义函数时的变量 */
color: var(--hljs-meta-string) !important;
}
.hljs-function {
/* 定义函数*/
color: var(--hljs-function) !important;
}
.hljs-title {
/* 定义函数时的函数名 */
color: var(--hljs-title) !important;
}
.hljs-params {
/* 定义函数时的变量名 */
color: var(--hljs-params) !important;
}
.hljs-comment {
/* 注释 */
color: var(--hljs-comment) !important;
}
.hljs-built_in {
/* 不知道是什么awwa,但会影响 "std" 的颜色 */
color: var(--hljs-built_in) !important;
}
.hljs-string {
/* 引号内容,但好像数组定义也会变成这个颜色 */
color: var(--hljs-string) !important;
}
.hljs-number,
.hljs-symbol {
/* 数字 */
color: var(--hljs-number) !important;
}
.hljs-literal {
/* 不清楚,但影响 "ios::sync_with_stdio(false)" 的 false */
color: var(--hljs-literal) !important;
}
pre.hljs,
pre.hljs.cpp,
pre.hljs.perl,
pre.hljs.ruby,
pre.hljs.cs,
pre.hljs.makefile,
pre.hljs.bash,
pre.hljs.markdown {
/* 背景 */
color: var(--hljs-code) !important;
background: var(--hljs-cpp-background) !important;
}
.hljs-keyword::selection,
.hljs-meta::selection,
.hljs-meta-keyword::selection,
.hljs-meta-string::selection,
.hljs-function::selection,
.hljs-title::selection,
.hljs-params::selection,
.hljs-comment::selection,
.hljs-built_in::selection,
.hljs-string::selection,
.hljs-number::selection,
.hljs-literal::selection,
.hljs-code::selection,
.hljs-symbol::selection,
code::selection {
/* 选中字 */
background: var(--hljs-selection)!important;
}

应该没人会用吧。


本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!