├── data
└── custom
│ ├── public
│ └── assets
│ │ ├── css
│ │ ├── theme-liteyuki-magipoke-mobile.css
│ │ ├── theme-snowykami.css
│ │ ├── theme-liteyuki-magipoke-color.css
│ │ ├── theme-liteyuki-magipoke.css
│ │ └── theme-liteyuki-magipoke-base.css
│ │ └── img
│ │ └── bg
│ │ ├── 0.jpg
│ │ ├── 1.jpg
│ │ └── 2.webp
│ └── templates
│ └── base
│ ├── footer.tmpl
│ ├── footer_content.tmpl
│ └── head.tmpl
├── README.md
├── LICENSE
└── water_commit
/data/custom/public/assets/css/theme-liteyuki-magipoke-mobile.css:
--------------------------------------------------------------------------------
1 | /* 移动端选项 */
--------------------------------------------------------------------------------
/data/custom/public/assets/img/bg/0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/snowykami/gitea-themes/HEAD/data/custom/public/assets/img/bg/0.jpg
--------------------------------------------------------------------------------
/data/custom/public/assets/img/bg/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/snowykami/gitea-themes/HEAD/data/custom/public/assets/img/bg/1.jpg
--------------------------------------------------------------------------------
/data/custom/public/assets/img/bg/2.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/snowykami/gitea-themes/HEAD/data/custom/public/assets/img/bg/2.webp
--------------------------------------------------------------------------------
/data/custom/templates/base/footer.tmpl:
--------------------------------------------------------------------------------
1 | {{if false}}
2 | {{/* to make html structure "likely" complete to prevent IDE warnings */}}
3 |
4 |
5 |
6 | {{end}}
7 |
8 | {{template "custom/body_inner_post" .}}
9 |
10 |
11 |
12 | {{template "custom/body_outer_post" .}}
13 |
14 | {{template "base/footer_content" .}}
15 |
16 |
17 |
18 | {{template "custom/footer" .}}
19 |
20 |
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # 自制的Gitea主题集合
2 |
3 | ## 安装
4 |
5 | 1. 二进制部署的将`custom`目录放到`/var/lib/gitea`,此后看起来应该是`/var/lib/gitea/custom/**`
6 | 2. docker或docker compose部署的请放到`/var/lib/gitea`挂载的目标目录下
7 |
8 | ## 使用
9 | 1. 二进制部署请编辑`/etc/gitea/app.ini`,docker部署的请编辑对应挂载目录下的`app.ini`
10 | 添加如下两个新主题,一个蓝色系,一个粉色系
11 |
12 | ```ini
13 | [ui]
14 | THEMES = ...,snowykami,liteyuki-magipoke
15 | DEFAULT_THEME = liteyuki-magipoke # 可选
16 | ```
17 | 2. 重启gitea
18 | 3. 进入个人设置>外观>主题,下拉即可看到新主题,选择应用后即可生效
19 |
20 | ## 其他
21 | 由于部署情况不同,可能需要自行调整路径和安装方法,这里推荐一位[大佬整理的安装方法](https://github.com/snowykami/gitea-themes/issues/2),如有问题请提issue
22 |
23 | ## 展示
24 | 实例: [git.liteyuki.icu](https://git.liteyuki.icu)
25 | 
26 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2024 Snowykami
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/data/custom/templates/base/footer_content.tmpl:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/data/custom/templates/base/head.tmpl:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | {{if .Title}}{{.Title}} - {{end}}{{if .Repository.Name}}{{.Repository.Name}} - {{end}}{{AppName}}
7 | {{if .ManifestData}}
8 | {{end}}
9 |
10 |
12 |
13 |
14 | {{if .GoGetImport}}
15 |
16 |
17 | {{end}}
18 | {{if and .EnableFeed .FeedURL}}
19 |
20 |
21 | {{end}}
22 |
23 |
24 | {{template "base/head_script" .}}
25 |
36 | {{template "base/head_opengraph" .}}
37 | {{template "base/head_style" .}}
38 | {{template "custom/header" .}}
39 |
40 |
41 |
42 | {{template "custom/body_outer_pre" .}}
43 |
44 |
45 |
46 |
47 | {{template "custom/body_inner_pre" .}}
48 |
49 | {{if not .PageIsInstall}}
50 | {{template "base/head_navbar" .}}
51 | {{end}}
52 |
53 | {{if false}}
54 | {{/* to make html structure "likely" complete to prevent IDE warnings */}}
55 |
56 |
57 |
58 |
59 |
60 | {{end}}
61 |
62 |
63 |
144 |
145 |
--------------------------------------------------------------------------------
/data/custom/public/assets/css/theme-snowykami.css:
--------------------------------------------------------------------------------
1 | @import "https://theme-park.dev/css/base/gitea/hotline.css";
2 | @import url('https://fonts.font.im/css?family=Source+Code+Pro');
3 |
4 | /* @import "./theme-snowykami-options.css"; */
5 | :root {
6 | --ltyk-border-radius: 2rem;
7 | --menu-border-radius: 1rem;
8 | --ui-background-color: rgba(64, 64, 64, 0.4);
9 | --input-border-radius: 100px;
10 | --transition-time: all 0.2s;
11 | transition: var(--transition-time);
12 | --ui-border: 1px solid rgba(255, 255, 255, 0.1);
13 | /* 半透明灰色背景 */
14 | /* contri 颜色 */
15 | --color-secondary-alpha-60: rgba(255, 255, 255, 0.3);
16 | --color-primary-light-4: #fbcfe8;
17 | --color-primary-light-2: #f9a8d4;
18 | --color-primary: #f472b6;
19 | --color-primary-dark-2: #ec4899;
20 | --color-primary-dark-4: #db2777;
21 | /* 文字颜色 */
22 | --code-background-color: rgba(0, 0, 0, 0.0) !important;
23 | }
24 |
25 | /* 添加全局背景图 */
26 | body {
27 | background: url(../img/bg/1.jpg) !important;
28 | background-size: cover !important;
29 | background-attachment: fixed !important;
30 | background-repeat: repeat-y !important;
31 | background-position: center center !important;
32 | }
33 |
34 | body::before {
35 | content: "";
36 | position: fixed;
37 | top: 0;
38 | left: 0;
39 | width: 100%;
40 | height: 100%;
41 | background: rgba(0, 0, 0, 0);
42 | pointer-events: none;
43 | /* 确保蒙版不会影响页面上的其他元素的交互 */
44 | /* 确保蒙版在背景图之下 */
45 | z-index: -1;
46 | }
47 |
48 | #navbar {
49 | border-bottom: 1px solid var(--color-primary-light-4) !important;
50 | background: var(--ui-background-color) !important;
51 | }
52 |
53 | .ui:not(.secondary.stackable.menu, .avatar, .wide, .menu, .header, .segment, .container) {
54 | border-radius: var(--ltyk-border-radius) !important;
55 | }
56 |
57 | .ui.header {
58 | border-radius: var(--ltyk-border-radius) !important;
59 | }
60 |
61 | .ui.container {
62 | border-radius: var(--ltyk-border-radius) !important;
63 | background: var(--ui-background-color) !important;
64 | backdrop-filter: blur(15px) !important;
65 | padding: 1rem !important;
66 | }
67 |
68 | .containers {
69 | background: var(--ui-background-color);
70 | backdrop-filter: blur(15px);
71 | padding: 1rem;
72 | border-top-left-radius: var(--ltyk-border-radius) !important;
73 | border-top-right-radius: var(--ltyk-border-radius) !important;
74 | border-bottom-left-radius: var(--ltyk-border-radius) !important;
75 | border-bottom-right-radius: var(--ltyk-border-radius) !important;
76 | }
77 |
78 | /* 一些下拉菜单有问题请在此处添加排除 */
79 | .ui.form:not(#repo-search-form):not(.list-header-search):not(#user-list-search-form):not(.ignore-dirty) {
80 | backdrop-filter: blur(15px) !important;
81 | padding: 1rem !important;
82 | }
83 |
84 | .flex-container-nav,
85 | .flex-container-main,
86 | #profile-avatar-card {
87 | border-radius: var(--ltyk-border-radius) !important;
88 | background: var(--ui-background-color) !important;
89 | backdrop-filter: blur(15px) !important;
90 | padding: 1rem !important;
91 | }
92 |
93 | .flex-container-main .header,
94 | .flex-container-nav .header,
95 | .ui.container .header,
96 | .ui.form .header {
97 | border-radius: var(--ltyk-border-radius) var(--ltyk-border-radius) 0 0 !important;
98 | }
99 |
100 | .flex-container-main .segment:not(:last-child),
101 | .flex-container-nav .segment:not(:last-child),
102 | .ui.container .segment:not(:last-child),
103 | .ui.form .segment:not(:last-child) {
104 | border-bottom-left-radius: 0 !important;
105 | border-bottom-right-radius: 0 !important;
106 | }
107 |
108 | .flex-container-main .segment:last-child,
109 | .flex-container-nav .segment:last-child,
110 | .ui.container .segment:last-child,
111 | .ui.form .segment:last-child {
112 | border-radius: 0 0 var(--ltyk-border-radius) var(--ltyk-border-radius) !important;
113 | }
114 |
115 | /* 后面为header的segment,segment本身要有border ,header保持默认 */
116 | .flex-container-main .segment:has(+.header),
117 | .flex-container-nav .segment:has(+.header),
118 | .ui.container .segment:has(+.header),
119 | .ui.form .segment:has(+.header) {
120 | border-radius: 0 0 var(--ltyk-border-radius) var(--ltyk-border-radius) !important;
121 | }
122 |
123 | /* 特殊处理 */
124 | .flex-container-main .repository-summary .repository-menu,
125 | .flex-container-main .repository-summary .segment.language-stats,
126 | .flex-container-nav .repository-summary .repository-menu,
127 | .flex-container-nav .repository-summary .segment.language-stats,
128 | .ui.container .repository-summary .repository-menu,
129 | .ui.container .repository-summary .segment.language-stats,
130 | .ui.form .repository-summary .repository-menu,
131 | .ui.form .repository-summary .segment.language-stats {
132 | border-radius: var(--ltyk-border-radius) !important;
133 | }
134 |
135 | .flex-container-main .header,
136 | .flex-container-nav .header {
137 | border-radius: var(--ltyk-border-radius) var(--ltyk-border-radius) 0 0 !important;
138 | border: var(--ui-border) !important;
139 | }
140 |
141 | .flex-container-main .segment {
142 | border-radius: 0 0 var(--ltyk-border-radius) var(--ltyk-border-radius) !important;
143 | border: var(--ui-border) !important;
144 | }
145 |
146 |
147 | .file-header {
148 | border-radius: var(--ltyk-border-radius) var(--ltyk-border-radius) 0 0 !important;
149 | border: var(--ui-border) !important;
150 | }
151 |
152 | .file-header+.ui.segment {
153 | border-radius: 0 0 var(--ltyk-border-radius) var(--ltyk-border-radius) !important;
154 | border: var(--ui-border) !important;
155 | }
156 |
157 | .secondary-nav .ui.container:nth-of-type(1) {
158 | border-top-left-radius: var(--ltyk-border-radius) !important;
159 | border-top-right-radius: var(--ltyk-border-radius) !important;
160 | border-bottom-left-radius: 0 !important;
161 | border-bottom-right-radius: 0 !important;
162 | }
163 |
164 | .ui.container:has(+.ui.tabs.divider) {
165 | border-bottom-left-radius: var(--ltyk-border-radius) !important;
166 | border-bottom-right-radius: var(--ltyk-border-radius) !important;
167 | border-top-left-radius: 0 !important;
168 | border-top-right-radius: 0 !important;
169 | }
170 |
171 | .page-content .container:last-of-type {
172 | border-bottom-left-radius: var(--ltyk-border-radius) !important;
173 | border-bottom-right-radius: var(--ltyk-border-radius) !important;
174 | }
175 |
176 | .page-content .container:not(.container:nth-of-type(1)):not(.container:last-of-type):not(.secondary-nav>.ui.container) {
177 | border-radius: 0 !important;
178 | }
179 |
180 |
181 | .transition.menu,
182 | .ui.floating.dropdown>.menu,
183 | .ui.menu.ui.dropdown.menu>.item,
184 | .ui.dropdown .menu,
185 | .ui.table {
186 | border-radius: var(--menu-border-radius) !important;
187 | background: var(--ui-background-color) !important;
188 | backdrop-filter: blur(15px) !important;
189 | z-index: 10;
190 | border: none !important;
191 | }
192 |
193 | /* 菜单menu部分 */
194 | /* 给该元素下的 .item 添加样式 */
195 | .transition.menu .item:first-child,
196 | .transition.menu .items:last-child,
197 | .ui.floating.dropdown>.menu .item:first-child,
198 | .ui.menu.ui.dropdown.menu>.item:first-child,
199 | .ui.dropdown .menu .item:first-child {
200 | border-radius: var(--menu-border-radius) var(--menu-border-radius) 0 0 !important;
201 | }
202 |
203 | .transition.menu .item:not(:first-child):not(:last-child),
204 | .ui.floating.dropdown>.menu .item:not(:first-child):not(:last-child),
205 | .ui.menu.ui.dropdown.menu>.item:not(:first-child):not(:last-child),
206 | .ui.dropdown .menu .item:not(:first-child):not(:last-child) {
207 | border-radius: 0 !important;
208 | }
209 |
210 | .transition.menu .item:last-child,
211 | .ui.floating.dropdown>.menu .item:last-child,
212 | .ui.menu.ui.dropdown.menu>.item:last-child,
213 | .ui.dropdown .menu .item:last-child,
214 | .ui.floating.dropdown .overflow.menu .scrolling.menu.items {
215 | border-radius: 0 0 var(--menu-border-radius) var(--menu-border-radius) !important;
216 | }
217 |
218 | a.item,
219 | .ui.secondary.vertical.menu>.item {
220 | border-radius: var(--ltyk-border-radius) !important;
221 | }
222 |
223 | a.item,
224 | a.item:hover,
225 | a.item:active,
226 | a.item:visited {
227 | transition: var(--transition-time) !important;
228 | }
229 |
230 | a.item.truncated-item-container {
231 | background: rgba(0, 0, 0, 0.0) !important;
232 | backdrop-filter: blur(15px) !important;
233 | }
234 |
235 | .ui.basic.label {
236 | background: rgba(0, 0, 0, 0) !important;
237 | }
238 |
239 | .ui.labeled.button {
240 | border: none !important;
241 | border-radius: var(--ltyk-border-radius) !important;
242 | background-color: var(--button-color) !important;
243 | }
244 |
245 | /* 圆形头像 */
246 | .avatar {
247 | border-radius: 50% !important;
248 | }
249 |
250 | footer {
251 | display: flex;
252 | flex-direction: column !important;
253 | z-index: 1;
254 | }
255 |
256 | button {
257 | border-radius: var(--ltyk-border-radius) !important;
258 | background-color: var(--button-color) !important;
259 | }
260 |
261 | input {
262 | margin: 0 0.5rem !important;
263 | border-radius: var(--input-border-radius) !important;
264 | }
265 |
266 | input:focus {
267 | border-color: #4285f4;
268 | /* 聚焦时的边框颜色 */
269 | box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
270 | /* 聚焦时的阴影 */
271 | outline: none;
272 | /* 移除默认的聚焦样式 */
273 | }
274 |
275 | input::placeholder {
276 | color: #aaa;
277 | /* 占位符颜色 */
278 | opacity: 1;
279 | /* 确保占位符颜色生效 */
280 | }
281 |
282 | .selection {
283 | margin: 0 0.5rem !important;
284 | }
285 |
286 | /* .ui.menu:not(.vertical) .item {
287 | justify-content: center;
288 | } */
289 |
290 | .ui.pagination.menu {
291 | border-radius: var(--input-border-radius) !important;
292 | }
293 |
294 | .chroma,
295 | .markdown:not(code) .highlight pre,
296 | .markdown:not(code) pre {
297 | background-color: rgba(0, 0, 0, 0) !important;
298 | color: var(--code-color)
299 | }
300 |
301 | .ui.secondary.pointing.menu .active.item {
302 | border-color: rgba(0, 0, 0, 0) !important;
303 | }
304 |
305 | .ui.table>thead>tr>th:last-of-type,
306 | .ui.table>tbody>tr>td:last-of-type,
307 | .ui.table>tr>td:last-of-type,
308 | .ui.table>thead>tr:first-child>th:first-child {
309 | background: rgba(0, 0, 0, 0.0) !important;
310 | }
311 |
312 | #repo-files-table {
313 | border-radius: 1rem !important;
314 | }
--------------------------------------------------------------------------------
/data/custom/public/assets/css/theme-liteyuki-magipoke-color.css:
--------------------------------------------------------------------------------
1 | :root {
2 | --is-dark-theme: false !important;
3 | /* 背景与文本颜色 */
4 | --code-background: #282c34 !important;
5 | /* One Dark Pro Italic Vivid 背景色 */
6 | --code-color: #c5c5c5 !important;
7 | /* One Dark Pro 文本色 */
8 |
9 | /* 错误及高亮 */
10 | --code-err-background: #e06c75 !important;
11 | --code-err-color: #1e0010 !important;
12 | --code-hl-background: #3E4451 !important;
13 |
14 | /* 关键字颜色 */
15 | --code-k-color: #c678dd !important;
16 | --code-kc-color: #c678dd !important;
17 | --code-kd-color: #c678dd !important;
18 | --code-kn-color: #c678dd !important;
19 | --code-kp-color: #c678dd !important;
20 | --code-kr-color: #c678dd !important;
21 | --code-kt-color: #c678dd !important;
22 |
23 | /* 变量与常量颜色 */
24 | --code-na-color: #38bdf8 !important;
25 | --code-nc-color: #38bdf8 !important;
26 | --code-no-color: #38bdf8 !important;
27 | --code-nd-color: #38bdf8 !important;
28 | --code-ne-color: #38bdf8 !important;
29 | --code-nf-color: #38bdf8 !important;
30 | --code-nx-color: #38bdf8 !important;
31 |
32 | /* 类型名称颜色 */
33 | --code-nt-color: #e06c75 !important;
34 |
35 | /* 字符串与注释颜色 */
36 | --code-s-color: #4ade80 !important;
37 | --code-sa-color: #4ade80 !important;
38 | --code-sb-color: #4ade80 !important;
39 | --code-sc-color: #4ade80 !important;
40 | --code-dl-color: #4ade80 !important;
41 | --code-sd-color: #4ade80 !important;
42 | --code-s2-color: #4ade80 !important;
43 | --code-se-color: #ae81ff !important;
44 | --code-sh-color: #4ade80 !important;
45 | --code-si-color: #4ade80 !important;
46 | --code-sx-color: #4ade80 !important;
47 | --code-sr-color: #4ade80 !important;
48 | --code-s1-color: #4ade80 !important;
49 | --code-ss-color: #4ade80 !important;
50 |
51 | /* 数字与符号颜色 */
52 | --code-l-color: #ae81ff !important;
53 | --code-ld-color: #e6db74 !important;
54 | --code-m-color: #ae81ff !important;
55 | --code-mb-color: #ae81ff !important;
56 | --code-mf-color: #ae81ff !important;
57 | --code-mh-color: #ae81ff !important;
58 | --code-mi-color: #ae81ff !important;
59 |
60 | /* 操作符颜色 */
61 | --code-o-color: #eee !important;
62 | --code-ow-color: #eee !important;
63 |
64 | /* 注释颜色 */
65 | --code-c-color: #888 !important;
66 | --code-ch-color: #888 !important;
67 | --code-cm-color: #888 !important;
68 | --code-c1-color: #888 !important;
69 | --code-cs-color: #888 !important;
70 | --code-cp-color: #888 !important;
71 | --code-cpf-color: #888 !important;
72 |
73 | /* 全局变量与函数颜色 */
74 | --code-gd-color: #e06c75 !important;
75 | --code-gi-color: #a6e22e !important;
76 | --code-gu-color: #56b6c2 !important;
77 |
78 | /* 界面文本颜色 */
79 | /* 一些提示颜色 */
80 | --color-green: #4ade80 !important;
81 | --color-red: #f87171 !important;
82 | --color-purple: #c678dd !important;
83 | --color-blue: #61afef !important;
84 | --color-orange: #d19a66 !important;
85 | --color-yellow: #e5c07b !important;
86 | --color-olive: #4ade80 !important;
87 | --color-green: #4ade80 !important;
88 | --color-teal: #56b6c2 !important;
89 | --color-cyan: #56b6c2 !important;
90 | --color-indigo: #61afef !important;
91 | --color-blue: #61afef !important;
92 | --color-violet: #c678dd !important;
93 | --color-purple: #c678dd !important;
94 | --color-pink: #c678dd !important;
95 | --color-brown: #d19a66 !important;
96 | /* --color-grey: #888;
97 | --color-light: #ccc;
98 | --color-light-2: #ddd;
99 | --color-light-3: #eee; */
100 | --color-light-grey: #888 !important;
101 | --color-gold: #e5c07b !important;
102 | --color-silver: #abb2bf !important;
103 | --color-fuchsia: #c678dd !important;
104 | --color-aqua: #56b6c2 !important;
105 | --color-khaki: #d19a66 !important;
106 | --color-plum: #c678dd !important;
107 | --color-crimson: #f87171 !important;
108 | --color-coral: #f87171 !important;
109 | --color-turquoise: #56b6c2 !important;
110 | --color-amber: #e5c07b !important;
111 | --color-lavender: #c678dd !important;
112 | --color-peach: #d19a66 !important;
113 | --color-mint: #4ade80 !important;
114 | --color-sand: #d19a66 !important;
115 | --color-rose: #f87171 !important;
116 | --color-cream: #e5c07b !important;
117 | --color-chocolate: #d19a66 !important;
118 | --color-coffee: #d19a66 !important;
119 | --color-eggplant: #c678dd !important;
120 | --color-fern: #4ade80 !important;
121 | --color-iris: #61afef !important;
122 | --color-jade: #56b6c2 !important;
123 | --color-lilac: #c678dd !important;
124 | --color-mango: #e5c07b !important;
125 | --color-nectarine: #d19a66 !important;
126 | --color-orchid: #c678dd !important;
127 | --color-periwinkle: #61afef !important;
128 | --color-quartz: #abb2bf !important;
129 | --color-ruby: #f87171 !important;
130 | --color-sapphire: #61afef !important;
131 | --color-tangerine: #d19a66 !important;
132 | --color-umber: #d19a66 !important;
133 | --color-vanilla: #e5c07b !important;
134 | --color-wheat: #d19a66 !important;
135 | --color-xanthic: #e5c07b !important;
136 | --color-yam: #d19a66 !important;
137 | --color-zucchini: #4ade80 !important;
138 | }
139 |
140 | :root {
141 | color-scheme: light;
142 | --is-dark-theme: false;
143 | --color-primary: #1e66f5;
144 | --color-primary-hover: #3677f6;
145 | --color-primary-dark-1: #0f5cf4;
146 | --color-primary-dark-2: #0a55ea;
147 | --color-primary-dark-3: #0a50db;
148 | --color-primary-dark-4: #094bcd;
149 | --color-primary-dark-5: #0845be;
150 | --color-primary-dark-6: #0840af;
151 | --color-primary-dark-7: #073ba1;
152 | --color-primary-light-1: #2d70f6;
153 | --color-primary-light-2: #3b7af6;
154 | --color-primary-light-3: #4a84f7;
155 | --color-primary-light-4: #598ef8;
156 | --color-primary-light-5: #6798f8;
157 | --color-primary-light-6: #76a2f9;
158 | --color-primary-light-7: #85acfa;
159 | --color-primary-alpha-10: rgba(30, 102, 245, 0.1);
160 | --color-primary-alpha-20: rgba(30, 102, 245, 0.2);
161 | --color-primary-alpha-30: rgba(30, 102, 245, 0.3);
162 | --color-primary-alpha-40: rgba(30, 102, 245, 0.4);
163 | --color-primary-alpha-50: rgba(30, 102, 245, 0.5);
164 | --color-primary-alpha-60: rgba(30, 102, 245, 0.6);
165 | --color-primary-alpha-70: rgba(30, 102, 245, 0.7);
166 | --color-primary-alpha-80: rgba(30, 102, 245, 0.8);
167 | --color-primary-alpha-90: rgba(30, 102, 245, 0.9);
168 | }
169 |
170 | .text.primary {
171 | color: rgb(var(--accent-color)) !important;
172 | }
173 |
174 | .text.red {
175 | color: var(--color-red) !important;
176 | }
177 |
178 | .text.orange {
179 | color: var(--color-orange) !important;
180 | }
181 |
182 | .text.yellow {
183 | color: var(--color-yellow) !important;
184 | }
185 |
186 | .text.olive {
187 | color: var(--color-olive) !important;
188 | }
189 |
190 | .text.green {
191 | color: var(--color-green) !important;
192 | }
193 |
194 | .text.teal {
195 | color: var(--color-teal) !important;
196 | }
197 |
198 | .text.blue {
199 | color: var(--color-blue) !important;
200 | }
201 |
202 | .text.violet {
203 | color: var(--color-violet) !important;
204 | }
205 |
206 | .text.purple {
207 | color: var(--color-purple) !important;
208 | }
209 |
210 | .text.pink {
211 | color: var(--color-pink) !important;
212 | }
213 |
214 | .text.brown {
215 | color: var(--color-brown) !important;
216 | }
217 |
218 | .text.black {
219 | color: var(--color-text) !important;
220 | }
221 |
222 | .text.grey,
223 | .text.light {
224 | color: var(--color-text-light) !important;
225 | }
226 |
227 | .text.light-2 {
228 | color: var(--color-text-light-2) !important;
229 | }
230 |
231 | .text.light-3 {
232 | color: var(--color-text-light-3) !important;
233 | }
234 |
235 | .text.light.grey {
236 | color: var(--color-grey-light) !important;
237 | }
238 |
239 | .text.gold {
240 | color: var(--color-gold) !important;
241 | }
242 |
243 | /* 其他颜色类 */
244 | .text.indigo {
245 | color: var(--color-indigo) !important;
246 | }
247 |
248 | .text.cyan {
249 | color: var(--color-cyan) !important;
250 | }
251 |
252 | .text.lime {
253 | color: var(--color-lime) !important;
254 | }
255 |
256 | .text.maroon {
257 | color: var(--color-maroon) !important;
258 | }
259 |
260 | .text.navy {
261 | color: var(--color-navy) !important;
262 | }
263 |
264 | .text.silver {
265 | color: var(--color-silver) !important;
266 | }
267 |
268 | .text.fuchsia {
269 | color: var(--color-fuchsia) !important;
270 | }
271 |
272 | .text.aqua {
273 | color: var(--color-aqua) !important;
274 | }
275 |
276 | .text.khaki {
277 | color: var(--color-khaki) !important;
278 | }
279 |
280 | .text.plum {
281 | color: var(--color-plum) !important;
282 | }
283 |
284 | .text.crimson {
285 | color: var(--color-crimson) !important;
286 | }
287 |
288 | .text.coral {
289 | color: var(--color-coral) !important;
290 | }
291 |
292 | .text.turquoise {
293 | color: var(--color-turquoise) !important;
294 | }
295 |
296 | .text.amber {
297 | color: var(--color-amber) !important;
298 | }
299 |
300 | .text.lavender {
301 | color: var(--color-lavender) !important;
302 | }
303 |
304 | .text.peach {
305 | color: var(--color-peach) !important;
306 | }
307 |
308 | .text.mint {
309 | color: var(--color-mint) !important;
310 | }
311 |
312 | .text.sand {
313 | color: var(--color-sand) !important;
314 | }
315 |
316 | .text.rose {
317 | color: var(--color-rose) !important;
318 | }
319 |
320 | .text.cream {
321 | color: var(--color-cream) !important;
322 | }
323 |
324 | .text.chocolate {
325 | color: var(--color-chocolate) !important;
326 | }
327 |
328 | .text.coffee {
329 | color: var(--color-coffee) !important;
330 | }
331 |
332 | .text.eggplant {
333 | color: var(--color-eggplant) !important;
334 | }
335 |
336 | .text.fern {
337 | color: var(--color-fern) !important;
338 | }
339 |
340 | .text.iris {
341 | color: var(--color-iris) !important;
342 | }
343 |
344 | .text.jade {
345 | color: var(--color-jade) !important;
346 | }
347 |
348 | .text.lilac {
349 | color: var(--color-lilac) !important;
350 | }
351 |
352 | .text.mango {
353 | color: var(--color-mango) !important;
354 | }
355 |
356 | .text.nectarine {
357 | color: var(--color-nectarine) !important;
358 | }
359 |
360 | .text.orchid {
361 | color: var(--color-orchid) !important;
362 | }
363 |
364 | .text.periwinkle {
365 | color: var(--color-periwinkle) !important;
366 | }
367 |
368 | .text.quartz {
369 | color: var(--color-quartz) !important;
370 | }
371 |
372 | .text.ruby {
373 | color: var(--color-ruby) !important;
374 | }
375 |
376 | .text.sapphire {
377 | color: var(--color-sapphire) !important;
378 | }
379 |
380 | .text.tangerine {
381 | color: var(--color-tangerine) !important;
382 | }
383 |
384 | .text.umber {
385 | color: var(--color-umber) !important;
386 | }
387 |
388 | .text.vanilla {
389 | color: var(--color-vanilla) !important;
390 | }
391 |
392 | .text.wheat {
393 | color: var(--color-wheat) !important;
394 | }
395 |
396 | .text.xanthic {
397 | color: var(--color-xanthic) !important;
398 | }
399 |
400 | .text.yam {
401 | color: var(--color-yam) !important;
402 | }
403 |
404 | .text.zucchini {
405 | color: var(--color-zucchini) !important;
406 | }
407 |
408 | .ui.green.label {
409 | background-color: var(--color-green) !important;
410 | }
411 |
412 | .ui.red.label {
413 | background-color: var(--color-red) !important;
414 | }
415 |
416 | .ui.purple.label {
417 | background-color: var(--color-purple) !important;
418 | }
419 |
420 | .ui.blue.label {
421 | background-color: var(--color-blue) !important;
422 | }
423 |
424 | .ui.orange.label {
425 | background-color: var(--color-orange) !important;
426 | }
427 |
428 | .ui.yellow.label {
429 | background-color: var(--color-yellow) !important;
430 | }
431 |
432 | .ui.olive.label {
433 | background-color: var(--color-olive) !important;
434 | }
435 |
436 | .ui.teal.label {
437 | background-color: var(--color-teal) !important;
438 | }
439 |
440 | .ui.cyan.label {
441 | background-color: var(--color-cyan) !important;
442 | }
443 |
444 | .ui.indigo.label {
445 | background-color: var(--color-indigo) !important;
446 | }
447 |
448 | .ui.violet.label {
449 | background-color: var(--color-violet) !important;
450 | }
451 |
452 | .ui.pink.label {
453 | background-color: var(--color-pink) !important;
454 | }
455 |
456 | .ui.brown.label {
457 | background-color: var(--color-brown) !important;
458 | }
459 |
460 | .ui.light-grey.label {
461 | background-color: var(--color-light-grey) !important;
462 | }
463 |
464 | .ui.gold.label {
465 | background-color: var(--color-gold) !important;
466 | }
467 |
468 | .ui.silver.label {
469 | background-color: var(--color-silver) !important;
470 | }
471 |
472 | .ui.fuchsia.label {
473 | background-color: var(--color-fuchsia) !important;
474 | }
475 |
476 | .ui.aqua.label {
477 | background-color: var(--color-aqua) !important;
478 | }
479 |
480 | .ui.khaki.label {
481 | background-color: var(--color-khaki) !important;
482 | }
483 |
484 | .ui.plum.label {
485 | background-color: var(--color-plum) !important;
486 | }
487 |
488 | .ui.crimson.label {
489 | background-color: var(--color-crimson) !important;
490 | }
491 |
492 | .ui.coral.label {
493 | background-color: var(--color-coral) !important;
494 | }
495 |
496 | .ui.turquoise.label {
497 | background-color: var(--color-turquoise) !important;
498 | }
499 |
500 | .ui.amber.label {
501 | background-color: var(--color-amber) !important;
502 | }
503 |
504 | .ui.lavender.label {
505 | background-color: var(--color-lavender) !important;
506 | }
507 |
508 | .ui.peach.label {
509 | background-color: var(--color-peach) !important;
510 | }
511 |
512 | .ui.mint.label {
513 | background-color: var(--color-mint) !important;
514 | }
515 |
516 | .ui.sand.label {
517 | background-color: var(--color-sand) !important;
518 | }
519 |
520 | .ui.rose.label {
521 | background-color: var(--color-rose) !important;
522 | }
523 |
524 | .ui.cream.label {
525 | background-color: var(--color-cream) !important;
526 | }
527 |
528 | .ui.chocolate.label {
529 | background-color: var(--color-chocolate) !important;
530 | }
531 |
532 | .ui.coffee.label {
533 | background-color: var(--color-coffee) !important;
534 | }
535 |
536 | .ui.eggplant.label {
537 | background-color: var(--color-eggplant) !important;
538 | }
539 |
540 | .ui.fern.label {
541 | background-color: var(--color-fern) !important;
542 | }
543 |
544 | .ui.iris.label {
545 | background-color: var(--color-iris) !important;
546 | }
547 |
548 | .ui.jade.label {
549 | background-color: var(--color-jade) !important;
550 | }
551 |
552 | .ui.lilac.label {
553 | background-color: var(--color-lilac) !important;
554 | }
555 |
556 | .ui.mango.label {
557 | background-color: var(--color-mango) !important;
558 | }
559 |
560 | .ui.nectarine.label {
561 | background-color: var(--color-nectarine) !important;
562 | }
563 |
564 | .ui.orchid.label {
565 | background-color: var(--color-orchid) !important;
566 | }
567 |
568 | .ui.periwinkle.label {
569 | background-color: var(--color-periwinkle) !important;
570 | }
571 |
572 | .ui.quartz.label {
573 | background-color: var(--color-quartz) !important;
574 | }
575 |
576 | .ui.ruby.label {
577 | background-color: var(--color-ruby) !important;
578 | }
579 |
580 | .ui.sapphire.label {
581 | background-color: var(--color-sapphire) !important;
582 | }
583 |
584 | .ui.tangerine.label {
585 | background-color: var(--color-tangerine) !important;
586 | }
587 |
588 | .ui.umber.label {
589 | background-color: var(--color-umber) !important;
590 | }
591 |
592 | .ui.vanilla.label {
593 | background-color: var(--color-vanilla) !important;
594 | }
595 |
596 | .ui.wheat.label {
597 | background-color: var(--color-wheat) !important;
598 | }
599 |
600 | .ui.xanthic.label {
601 | background-color: var(--color-xanthic) !important;
602 | }
603 |
604 | .ui.yam.label {
605 | background-color: var(--color-yam) !important;
606 | }
607 |
608 | .ui.zucchini.label {
609 | background-color: var(--color-zucchini) !important;
610 | }
--------------------------------------------------------------------------------
/data/custom/public/assets/css/theme-liteyuki-magipoke.css:
--------------------------------------------------------------------------------
1 | @import "https://theme-park.dev/css/base/gitea/organizr.css";
2 | @import "./theme-liteyuki-magipoke-base.css";
3 | @import "./theme-liteyuki-magipoke-color.css";
4 | @import "./theme-liteyuki-magipoke-mobile.css";
5 |
6 | /* 暗色系主题 */
7 | :root {
8 |
9 | --is-dark-theme: false !important;
10 | --text: #d8d8d8;
11 |
12 | --white: #ffffff;
13 |
14 | --liteyuki-theme: liteyuki-magipoke;
15 | /* 主题标识符 */
16 |
17 | /* 圆角区 */
18 | --border-radius-bar: 5rem;
19 | /* 长条的圆角 */
20 | --border-radius-big: 2rem;
21 | --border-radius-small: 1rem;
22 | --border-radius-menu: 1rem;
23 | --border-radius: var(--border-radius-small) !important;
24 | /* 覆盖原有 */
25 |
26 | /* 边框 */
27 | --border: 2px solid rgba(255, 255, 255, 0.1);
28 |
29 | /* 毛玻璃区 */
30 | --backdrop-filter: blur(10px);
31 |
32 | /* 阴影区 */
33 | --box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
34 |
35 | /* 底色 */
36 | --ui-background-color: rgba(64, 64, 64, 0.4);
37 | --menu-background-color: rgba(64, 64, 64, 0.6);
38 | --navbar-background-color: rgba(0, 0, 0, 0.6);
39 | --code-background-color: rgba(0, 0, 0, 0.6);
40 | --tab-background-color: rgba(0, 0, 0, 0.4);
41 |
42 | /* 选项卡高度 */
43 | --code-tab-height: 2.5rem;
44 | --code-item-margin: 3rem;
45 | --code-copy-button-size: 3rem;
46 |
47 | /* 所有渐变 */
48 | --transition-time: all 0.2s;
49 | transition: var(--transition-time) !important;
50 |
51 | /* 贡献方块颜色 */
52 | --color-secondary-alpha-60: rgba(0, 0, 0, 0.5);
53 | }
54 |
55 | body {
56 | background: url(https://nd.liteyuki.icu/api/v3/file/get/29680/furina.png?sign=KGLcdLoRTKtMXwc7wUoUC4csi5wKUEX-cbh4XoOGSk0%3D%3A0);
57 | background-size: cover !important;
58 | background-attachment: fixed !important;
59 | background-repeat: repeat-y !important;
60 | background-position: center center !important;
61 | }
62 |
63 | body::before {
64 | content: "";
65 | position: fixed;
66 | top: 0;
67 | left: 0;
68 | width: 100%;
69 | height: 100%;
70 | background: rgba(0, 0, 0, 0.2);
71 | pointer-events: none;
72 | z-index: -1;
73 | }
74 |
75 | a.item,
76 | a.item:hover,
77 | a.item:active,
78 | a.item:visited {
79 | transition: var(--transition-time) !important;
80 | }
81 |
82 | .avatar {
83 | border-radius: 50% !important;
84 | }
85 |
86 | /* 足 */
87 | footer {
88 | display: flex;
89 | flex-direction: column !important;
90 | z-index: 1;
91 |
92 | backdrop-filter: var(--backdrop-filter) !important;
93 | background-color: var(--menu-background-color) !important;
94 | padding: 0.5rem !important;
95 |
96 | .left-links {
97 | margin-bottom: 0.5rem !important;
98 | }
99 | }
100 |
101 | #navbar {
102 | border-bottom: var(--border) !important;
103 | background: var(--navbar-background-color) !important;
104 | }
105 |
106 | #navbar .item {
107 | /* border-radius: var(--border-radius-bar) !important;*/
108 | }
109 |
110 |
111 | .menu .item:hover{
112 | background: var(--transparency-dark-15) !important;
113 | }
114 |
115 | #navbar .item.active {
116 | background-color: var(--transparency-dark-25) !important;
117 | color: var(--white) !important;
118 | }
119 |
120 | #navbar .dropdown .item {
121 | /* border-radius: var(--border-radius-menu) !important;*/
122 | }
123 |
124 | /* */
125 | .ui.label,
126 | .ui.button,
127 | .ui.basic.buttons .button,
128 | .ui.basic.button {
129 | border-radius: var(--border-radius-bar);
130 | border: var(--border);
131 | }
132 |
133 | /* 菜单,长条半圆 */
134 | .ui.action.input>.dropdown:last-child,
135 | .ui.action.input>.button:last-child,
136 | .ui.action.input>.buttons:last-child>.button {
137 | border-radius: var(--border-radius-bar) !important;
138 | }
139 |
140 | /* 二元菜单 */
141 | #app .ui.item.menu,
142 | .ui.item.menu .item:first-child {
143 | border-top-left-radius: var(--border-radius-bar) !important;
144 | border-bottom-left-radius: var(--border-radius-bar) !important;
145 | }
146 |
147 | .ui.item.menu .item:last-child {
148 | border-top-right-radius: var(--border-radius-bar) !important;
149 | border-bottom-right-radius: var(--border-radius-bar) !important;
150 | }
151 |
152 | #app .ui.item.menu,
153 | .ui.item.menu .item.active {
154 | color: var(--accent-color) !important;
155 | }
156 |
157 | /* 输入框 */
158 | .ui.form input,
159 | .ui.form input:not([type]),
160 | .ui.form input[type=date],
161 | .ui.form input[type=datetime-local],
162 | .ui.form input[type=email],
163 | .ui.form input[type=file],
164 | .ui.form input[type=number],
165 | .ui.form input[type=password],
166 | .ui.form input[type=search],
167 | .ui.form input[type=tel],
168 | .ui.form input[type=text],
169 | .ui.form input[type=time],
170 | .ui.form input[type=url],
171 | .ui.input>input {
172 | border-radius: var(--border-radius-bar) !important;
173 | /* margin-right: 1rem !important; */
174 | }
175 |
176 | /* 主要按钮选中及悬停状态,圆角宽按钮 */
177 | .ui.secondary.menu .active.item,
178 | .ui.secondary.menu .active.item:hover,
179 | .dashboard.feeds .filter.menu .item,
180 | .dashboard.issues .filter.menu .item,
181 | .repository .clone-panel>button:first-of-type,
182 | .ui.buttons .button:first-child,
183 | .ui.buttons .button:last-child {
184 | border-radius: var(--border-radius-bar) !important;
185 | /* margin-right: 1rem !important; */
186 | }
187 |
188 | /* 贡献曲线图 */
189 | .main-graph {
190 | border-radius: var(--border-radius-small) !important;
191 | }
192 |
193 | .ui.container {
194 | background-color: var(--ui-background-color) !important;
195 | backdrop-filter: var(--backdrop-filter) !important;
196 | border-radius: var(--border-radius-big) !important;
197 | box-shadow: var(--box-shadow) !important;
198 | padding: 1rem !important;
199 | margin-bottom: 1rem !important;
200 | }
201 |
202 | .ui.header {
203 | border-top-left-radius: var(--border-radius-small) !important;
204 | border-top-right-radius: var(--border-radius-small) !important;
205 | }
206 |
207 | .ui.segment {
208 | border: none !important;
209 | }
210 |
211 | /* UI段 */
212 | .ui.segment:not(.sub-menu.repository-menu):not(.language-stats):not(.tw-py-8):not(.text):not(.item):not(.main-graph):not(.issue-content-right):nth-last-of-type(1),
213 | .ui.segment.segment-end:not(.text):not(.item):not(.main-graph):not(.issue-content-right) {
214 | border-bottom-left-radius: var(--border-radius-small) !important;
215 | border-bottom-right-radius: var(--border-radius-small) !important;
216 | }
217 |
218 | /* 右上角两个下拉菜单颜色 */
219 | .ui.dropdown .menu {
220 | border-radius: var(--border-radius-menu) !important;
221 | background-color: var(--menu-background-color) !important;
222 | backdrop-filter: var(--backdrop-filter) !important;
223 | }
224 |
225 | /* 右上角两个下拉菜单选中文本颜色 */
226 | .ui.dropdown .menu .active.item {
227 | color: var(--white) !important;
228 | }
229 |
230 | .ui.dropdown .menu .item {
231 | /* border-radius: var(--border-radius-menu) !important;*/
232 | /* background-color: var(--menu-background-color) !important;*/
233 | }
234 |
235 | /* 设置页面左边垂直菜单 */
236 | .ui.vertical.menu {
237 | border-radius: var(--border-radius-menu) !important;
238 | }
239 |
240 | .issue-content-right {
241 | border-radius: var(--border-radius-small) !important;
242 | }
243 |
244 | /* 左垂菜单第一个 */
245 | .ui.vertical.menu>.item.header:first-child {
246 | border-top-left-radius: var(--border-radius-menu) !important;
247 | border-top-right-radius: var(--border-radius-menu) !important;
248 | }
249 |
250 | /* 顶栏带下边框的按钮,例如仓库,用户,组织 */
251 | .ui.secondary.pointing.menu .active.item,
252 | .ui.secondary.pointing.menu .active.item:hover {
253 | border: none;
254 | background-color: rgba(var(--accent-color)) !important;
255 | color: var(--white) !important;
256 | }
257 |
258 | .ui.horizontal.segments>.segment,
259 | .ui.horizontal.segments>.segment {
260 | background: none !important;
261 | border: none !important;
262 | }
263 |
264 | /* 多行文本输入框 */
265 | textarea {
266 | border-radius: var(--border-radius-small) !important;
267 | }
268 |
269 | /* 下拉菜单按钮 */
270 | .ui.action.input>.dropdown:not(:first-child),
271 | .ui.action.input>.button:not(:first-child),
272 | .ui.action.input>.buttons:not(:first-child)>.button,
273 | .ui.selection.dropdown,
274 | .ui.active.selection.dropdown {
275 | border-radius: var(--border-radius-bar) !important;
276 | }
277 |
278 | .ui.selection.dropdown .menu>.item {
279 | border: none !important;
280 | }
281 |
282 | /* 仓库页面移动端扩展菜单 */
283 | .tippy-box[data-theme=menu] {
284 | background-color: var(--menu-background-color) !important;
285 | border-radius: var(--border-radius-small) !important;
286 | box-shadow: var(--box-shadow) !important;
287 | backdrop-filter: var(--backdrop-filter) !important;
288 | }
289 |
290 | /* 用户贡献方块背景 */
291 | #user-heatmap {
292 | background-color: var(--ui-background-color) !important;
293 | backdrop-filter: var(--backdrop-filter) !important;
294 | border-radius: var(--border-radius-small) !important;
295 | box-shadow: var(--box-shadow) !important;
296 | padding: 1rem !important;
297 | margin-bottom: 1rem !important;
298 | }
299 |
300 | /* .ui.action.input .ui.ui.button {
301 | margin-left: 1rem !important;
302 | margin-right: 1rem !important;
303 | } */
304 |
305 | /* 首页右边的仓库列表,展示actions状态那个 */
306 | /* .feeds .list ul li:first-child {
307 | border-top-left-radius: var(--border-radius-small) !important;
308 | border-top-right-radius: var(--border-radius-small) !important;
309 | } */
310 |
311 | /* 首页右边仓库的头部,包含搜索框 */
312 | .ui.attached:not(.message)+.ui.attached.segment.repos-search:not(.top) {
313 | border-bottom-left-radius: 0 !important;
314 | border-bottom-right-radius: 0 !important;
315 | }
316 |
317 | /* 首页右边仓库列表翻页按钮们 */
318 | .ui.pagination.menu.narrow .item {
319 | padding: auto !important;
320 | }
321 |
322 |
323 | /* 首页底部翻页按钮 */
324 | .ui.menu {
325 | border-radius: var(--border-radius-bar) !important;
326 | }
327 |
328 | /* 文件框头部二层复写 */
329 | .ui.table>thead>tr>th:first-child {
330 | border-top-left-radius: var(--border-radius-small) !important;
331 | }
332 |
333 | .ui.table>thead>tr>th:last-child {
334 | border-top-right-radius: var(--border-radius-small) !important;
335 | }
336 |
337 |
338 | /* 文件框总体 */
339 | table#repo-files-table {
340 | border-radius: var(--border-radius-small) !important;
341 | }
342 |
343 | /* markdown中代码块总体 */
344 | .markup .code-block,
345 | .markup .mermaid-block {
346 | /* box-shadow: var(--box-shadow) !important; */
347 | box-shadow: 4px 0 6px rgba(0, 0, 0, 0.3), -4px 0 6px rgba(0, 0, 0, 0.3) !important;
348 | background-color: var(--code-background-color) !important;
349 | }
350 |
351 | /* tab-dot代码块前插入的选项卡 */
352 | pre.code-block {
353 | position: relative;
354 | /* 使绝对定位基于此元素 */
355 | padding-top: var(--code-item-margin);
356 | /* 为选项卡预留空间,避免内容被覆盖 */
357 | }
358 |
359 | .code-copy.ui.button {
360 | position: absolute;
361 | /* 绝对定位 */
362 | top: var(--code-item-margin);
363 | /* 顶部对齐 */
364 | right: 0.5rem;
365 | /* 高度 */
366 | z-index: 10;
367 | /* 确保复制按钮在最上层 */
368 | }
369 |
370 | .code-copy.code-shot.ui.button {
371 | /* 顶部对齐 */
372 | right: 4rem;
373 | /* 右侧对齐 */
374 | z-index: 10;
375 | /* 确保截图按钮在最上层 */
376 | }
377 |
378 | /* 选项卡 */
379 | .code-tab {
380 | position: absolute;
381 | /* 绝对定位 */
382 | top: 0;
383 | /* 顶部对齐 */
384 | left: 0;
385 | /* 左侧对齐 */
386 | width: 100%;
387 | /* 宽度铺满父元素 */
388 | /* 或者根据需要设置具体宽度 */
389 | display: flex;
390 | justify-content: flex-start;
391 | padding: 0.75rem;
392 | /* 内边距 */
393 | background-color: var(--tab-background-color) !important;
394 | border-top-left-radius: var(--border-radius-small);
395 | border-top-right-radius: var(--border-radius-small);
396 | z-index: 10;
397 | /* 确保选项卡在最上层 */
398 | }
399 |
400 | .code-tab-item {
401 | display: flex;
402 | justify-content: flex-start;
403 | }
404 |
405 | .code-tab-dot {
406 | height: 0.8rem;
407 | width: 0.8rem;
408 | border-radius: var(--border-radius-bar) !important;
409 | margin-right: 0.65rem;
410 | cursor: pointer;
411 | /* 添加鼠标指针 */
412 | }
413 |
414 | /* 代码预览页面代码单行样式 */
415 | .chroma,
416 | .markdown:not(code) .highlight pre,
417 | .markdown:not(code) pre {
418 | background-color: rgba(0, 0, 0, 0) !important;
419 | }
420 |
421 | .ui.label {
422 | border: var(--border) !important;
423 | }
424 |
425 | /* 小圆角集合,release页面框框 */
426 | #release-list .release-entry .detail {
427 | border-radius: var(--border-radius-small) !important;
428 | }
429 |
430 | pre,
431 | code,
432 | kbd,
433 | samp {
434 | /* font-family: var(--font-family-code) !important; */
435 | }
436 |
437 | /* 代码块高亮色 */
438 |
439 | /* 修改label-list行距 #3 */
440 | .label-list .ui.label {
441 | margin-bottom: 0.5em; /* 根据需要调整数值 */
442 | }
443 |
444 | /* relative-time 加上背景色 #3 */
445 | .tippy-content {
446 | background-color: rgba(0, 0, 0, 0.6);
447 | border-radius: 0.5rem;
448 | padding: 0.25rem 0.5rem;
449 | }
450 |
451 | /* 所有图像 */
452 | img {
453 | border-radius: var(--border-radius-small) !important;
454 | }
455 |
456 | /* table的thead要上圆角,tbody最后一个下圆角 */
457 | table>thead>tr>th:first-child {
458 | border-top-left-radius: var(--border-radius-small) !important;
459 | }
460 |
461 | table>thead>tr>th:last-child {
462 | border-top-right-radius: var(--border-radius-small) !important;
463 | }
464 |
465 | table>tbody>tr:last-child>td:first-child {
466 | border-bottom-left-radius: var(--border-radius-small) !important;
467 | }
468 |
469 | table>tbody>tr:last-child>td:last-child {
470 | border-bottom-right-radius: var(--border-radius-small) !important;
471 | }
472 |
473 | table>thead>tr{
474 | border-top-left-radius: var(--border-radius-small) !important;
475 | border-top-right-radius: var(--border-radius-small) !important;
476 | }
477 |
478 | /* 移除thead顶部的线 */
479 | table>thead>tr {
480 | border-top: none !important;
481 | }
482 |
483 | /* 添加边界 */
484 | table{
485 | border-radius: var(--border-radius-small) !important;
486 | box-shadow: var(--box-shadow) !important;
487 | border: var(--border) !important;
488 | }
489 |
490 | /* 给表格加阴影 */
491 | /* table {
492 | box-shadow: var(--box-shadow) !important;
493 | } */
494 |
495 | /* 自定义滚动条样式 */
496 | *{
497 | scrollbar-color: initial !important;
498 | }
499 |
500 | ::-webkit-scrollbar {
501 | width: 8px;
502 | height: 8px;
503 | background: var(--ui-background-color);
504 | border-radius: 5px;
505 | transition: all 0.2s;
506 | }
507 |
508 | ::-webkit-scrollbar:hover{
509 | width: 12px;
510 | height: 12px;
511 | }
512 |
513 | ::-webkit-scrollbar-thumb {
514 | background: var(--navbar-background-color);
515 | border-radius: 5px;
516 | transition: all 0.2s;
517 | }
518 |
519 | ::-webkit-scrollbar-thumb:hover{
520 | }
521 |
522 |
523 | .flex-item {
524 | padding: 12px 12px 2px;
525 | border-radius: 11px;
526 | /* border: 1px solid #ffffff38; */
527 | margin: 12px 0;
528 | /* box-shadow: #b5c7fb57 0px 4px 5px 0px; */
529 | background-color: #ffe7e711;
530 | position: relative;
531 | transition: 0.3s all;
532 | }
533 |
534 |
535 | #set-bg-container {
536 | text-align: center;
537 | }
538 | #url-input {
539 | position: fixed;
540 | top: 0;
541 | display: none;
542 | margin-top: 10px;
543 | }
544 | #url-input input{
545 | min-width: 200px;
546 | }
547 | #set-bg-btn, #save-url-btn {
548 | padding: 3px 10px;
549 | margin: 5px;
550 | color: #3e6c81;
551 | background-color: #b5edfdbd;
552 | cursor: pointer;
553 | }
554 |
555 | .flex-item:hover{
556 | box-shadow: #dfe7ff57 3px 3px 5px 0px;
557 | }
558 |
559 | .label-list .ui.label {
560 | margin-bottom: 0;
561 | }
562 |
563 | .flex-item-header {
564 | padding-bottom: 3px;
565 | border-bottom: 1px solid #fff2;
566 | }
567 |
568 | .ui.basic.label {
569 | font-size: 11px;
570 | background-color: rgb(216 235 243 / 82%);
571 | color: #3a69c2;
572 | border: 1px solid #b0c4f3 !important;
573 | padding: 3px 8px;
574 | }
575 |
576 | .divider+.flex-list>.flex-item:first-child {
577 | padding-top: 12px;
578 | }
579 |
580 | .flex-item-body relative-time{
581 | color: #36c370;
582 | font-size: 11px;
583 | margin-left: 10px;
584 | }
585 |
586 | .flex-item-main .flex-item-body:last-of-type{
587 | color: #a3a3a3;
588 | font-size: 11px;
589 | margin-top: 10px;
590 | }
591 |
592 | #tippy-1{
593 | background-image: linear-gradient(199deg, var(--transparency-dark-25), #000000 100%);
594 | backdrop-filter: blur(16px);
595 | border-radius: 16px 16px 16px 6px;
596 | left: -10px;
597 | }
598 |
--------------------------------------------------------------------------------
/water_commit:
--------------------------------------------------------------------------------
1 | water
2 | 28064
3 | 2471
4 | 2172
5 | 25728
6 | 21709
7 | 19542
8 | 16956
9 | 8487
10 | 6627
11 | 16396
12 | 595
13 | 31102
14 | 2162
15 | 11203
16 | 30693
17 | 10510
18 | 9926
19 | 31614
20 | 15456
21 | 5503
22 | 27609
23 | 31271
24 | 14938
25 | 5816
26 | 15822
27 | 21947
28 | 29891
29 | 12284
30 | 481
31 | 29006
32 | 26575
33 | 30784
34 | 15373
35 | 21275
36 | 11962
37 | 51
38 | 28416
39 | 16110
40 | 17966
41 | 30741
42 | 7030
43 | 13788
44 | 18716
45 | 13605
46 | 18493
47 | 19338
48 | 4520
49 | 3757
50 | 26753
51 | 28226
52 | 19288
53 | 21309
54 | 31766
55 | 635
56 | 16725
57 | 13285
58 | 15100
59 | 13453
60 | 15445
61 | 26044
62 | 10144
63 | 25690
64 | 140
65 | 16033
66 | 27400
67 | 31005
68 | 2617
69 | 19259
70 | 5209
71 | 8009
72 | 8617
73 | 23589
74 | 5701
75 | 32627
76 | 25966
77 | 26200
78 | 28414
79 | 23606
80 | 3521
81 | 29372
82 | 31868
83 | 13967
84 | 2555
85 | 4574
86 | 20722
87 | 24005
88 | 4408
89 | 31194
90 | 30589
91 | 26213
92 | 31860
93 | 24262
94 | 18181
95 | 27694
96 | 7801
97 | 6135
98 | 26700
99 | 23846
100 | 11836
101 | 700
102 | 30703
103 | 7625
104 | 7215
105 | 11791
106 | 22388
107 | 12214
108 | 5941
109 | 1353
110 | 3946
111 | 27826
112 | 19407
113 | 31193
114 | 17498
115 | 420
116 | 21572
117 | 23171
118 | 19382
119 | 32465
120 | 32685
121 | 9146
122 | 7759
123 | 18029
124 | 11255
125 | 6350
126 | 22927
127 | 11632
128 | 28719
129 | 15339
130 | 28627
131 | 386
132 | 26421
133 | 25996
134 | 16609
135 | 2389
136 | 26990
137 | 14419
138 | 31667
139 | 16391
140 | 28674
141 | 20081
142 | 13061
143 | 1925
144 | 21899
145 | 16293
146 | 6083
147 | 8023
148 | 21855
149 | 16715
150 | 3386
151 | 24837
152 | 25932
153 | 18857
154 | 6670
155 | 24811
156 | 7779
157 | 5033
158 | 5736
159 | 29174
160 | 3270
161 | 15258
162 | 19535
163 | 22604
164 | 4326
165 | 17463
166 | 27095
167 | 8186
168 | 2489
169 | 13376
170 | 7609
171 | 18937
172 | 30344
173 | 5977
174 | 8657
175 | 25958
176 | 4633
177 | 11498
178 | 19317
179 | 19036
180 | 9471
181 | 10259
182 | 23165
183 | 6934
184 | 9454
185 | 29476
186 | 7874
187 | 9997
188 | 6833
189 | 10945
190 | 29123
191 | 31738
192 | 20925
193 | 30932
194 | 25930
195 | 10056
196 | 31578
197 | 31443
198 | 357
199 | 18253
200 | 20070
201 | 1540
202 | 10637
203 | 105
204 | 29028
205 | 24705
206 | 24461
207 | 25140
208 | 20953
209 | 16079
210 | 17757
211 | 26084
212 | 14994
213 | 11053
214 | 20460
215 | 30008
216 | 27896
217 | 4515
218 | 4818
219 | 30976
220 | 28252
221 | 11296
222 | 31225
223 | 3023
224 | 10670
225 | 26885
226 | 29894
227 | 29645
228 | 16360
229 | 24809
230 | 20629
231 | 14487
232 | 13528
233 | 22527
234 | 29645
235 | 984
236 | 2872
237 | 7638
238 | 6001
239 | 20959
240 | 3000
241 | 32050
242 | 28971
243 | 13460
244 | 29709
245 | 32208
246 | 29701
247 | 12753
248 | 24040
249 | 12575
250 | 11350
251 | 19386
252 | 12180
253 | 1827
254 | 15339
255 | 22608
256 | 28607
257 | 31875
258 | 31326
259 | 18067
260 | 11600
261 | 25079
262 | 26517
263 | 1990
264 | 15811
265 | 2312
266 | 24977
267 | 26474
268 | 17941
269 | 9779
270 | 14271
271 | 8725
272 | 5497
273 | 16833
274 | 8074
275 | 24848
276 | 7080
277 | 8100
278 | 12168
279 | 23149
280 | 15018
281 | 8913
282 | 29775
283 | 26025
284 | 5226
285 | 4028
286 | 6112
287 | 14686
288 | 6257
289 | 117
290 | 8149
291 | 27457
292 | 13517
293 | 6078
294 | 4828
295 | 9662
296 | 26170
297 | 14065
298 | 14634
299 | 31971
300 | 22593
301 | 25544
302 | 11688
303 | 29487
304 | 30850
305 | 864
306 | 26219
307 | 22948
308 | 18569
309 | 31723
310 | 699
311 | 16589
312 | 29629
313 | 27419
314 | 3441
315 | 20055
316 | 24281
317 | 23568
318 | 20738
319 | 21964
320 | 29849
321 | 17744
322 | 19577
323 | 22116
324 | 23509
325 | 17241
326 | 14130
327 | 14769
328 | 32364
329 | 28357
330 | 27632
331 | 17458
332 | 23133
333 | 8398
334 | 22659
335 | 25387
336 | 29061
337 | 7916
338 | 23926
339 | 14633
340 | 16112
341 | 31348
342 | 2792
343 | 23033
344 | 8871
345 | 18255
346 | 16114
347 | 16186
348 | 13627
349 | 28316
350 | 25159
351 | 24325
352 | 2665
353 | 8439
354 | 10182
355 | 20598
356 | 1684
357 | 6603
358 | 29138
359 | 21155
360 | 8710
361 | 3380
362 | 3412
363 | 24481
364 | 14778
365 | 22926
366 | 30856
367 | 21335
368 | 12679
369 | 14998
370 | 19000
371 | 17662
372 | 24781
373 | 10732
374 | 18187
375 | 1242
376 | 17646
377 | 23966
378 | 220
379 | 13684
380 | 10068
381 | 29817
382 | 25252
383 | 5012
384 | 27090
385 | 30994
386 | 24914
387 | 11025
388 | 27788
389 | 9072
390 | 25978
391 | 24532
392 | 21856
393 | 19021
394 | 9009
395 | 18033
396 | 4801
397 | 23629
398 | 10133
399 | 11432
400 | 15894
401 | 20788
402 | 10880
403 | 31556
404 | 17929
405 | 1005
406 | 19909
407 | 24810
408 | 14599
409 | 23995
410 | 7189
411 | 28065
412 | 24455
413 | 323
414 | 7928
415 | 16036
416 | 21819
417 | 18484
418 | 17464
419 | 30590
420 | 25704
421 | 31160
422 | 25023
423 | 15281
424 | 4494
425 | 2215
426 | 10191
427 | 16719
428 | 31334
429 | 30739
430 | 5813
431 | 15673
432 | 20307
433 | 31759
434 | 18849
435 | 17968
436 | 9042
437 | 27195
438 | 24836
439 | 23906
440 | 29584
441 | 27861
442 | 15811
443 | 7338
444 | 32346
445 | 20513
446 | 2824
447 | 2909
448 | 28234
449 | 31001
450 | 25960
451 | 14948
452 | 31682
453 | 27561
454 | 30256
455 | 22096
456 | 10239
457 | 28859
458 | 19723
459 | 31441
460 | 8913
461 | 17357
462 | 14797
463 | 19007
464 | 6707
465 | 16515
466 | 5347
467 | 28044
468 | 31990
469 | 67
470 | 4510
471 | 14652
472 | 23457
473 | 30052
474 | 5955
475 | 382
476 | 27512
477 | 18220
478 | 6406
479 | 16929
480 | 11599
481 | 380
482 | 31662
483 | 3000
484 | 25865
485 | 10476
486 | 920
487 | 5554
488 | 5046
489 | 27739
490 | 30326
491 | 9077
492 | 7964
493 | 23378
494 | 8733
495 | 12989
496 | 16738
497 | 32458
498 | 19803
499 | 15876
500 | 28961
501 | 5288
502 | 23639
503 | 10354
504 | 22256
505 | 16707
506 | 199
507 | 17673
508 | 22715
509 | 28132
510 | 32008
511 | 28276
512 | 24389
513 | 1253
514 | 29283
515 | 5799
516 | 27224
517 | 5893
518 | 22784
519 | 25408
520 | 22483
521 | 2916
522 | 30726
523 | 2719
524 | 22385
525 | 3410
526 | 2837
527 | 9731
528 | 19719
529 | 19679
530 | 10020
531 | 29920
532 | 22951
533 | 903
534 | 27602
535 | 30109
536 | 2062
537 | 6260
538 | 26611
539 | 10273
540 | 18757
541 | 29125
542 | 28930
543 | 28092
544 | 3354
545 | 417
546 | 14530
547 | 29574
548 | 492
549 | 8510
550 | 28392
551 | 19666
552 | 18084
553 | 29047
554 | 32174
555 | 15994
556 | 7891
557 | 7776
558 | 24457
559 | 28666
560 | 153
561 | 13617
562 | 13349
563 | 12460
564 | 19041
565 | 6312
566 | 16340
567 | 10543
568 | 236
569 | 1726
570 | 9564
571 | 2944
572 | 23875
573 | 17012
574 | 17431
575 | 17884
576 | 164
577 | 14528
578 | 12843
579 | 15201
580 | 4328
581 | 22090
582 | 4010
583 | 1801
584 | 16615
585 | 22314
586 | 11976
587 | 7677
588 | 30972
589 | 7956
590 | 28026
591 | 15454
592 | 28606
593 | 2031
594 | 23549
595 | 15575
596 | 1575
597 | 30282
598 | 19433
599 | 14550
600 | 24885
601 | 2456
602 | 30561
603 | 5977
604 | 29117
605 | 8218
606 | 26072
607 | 30686
608 | 7543
609 | 30073
610 | 14948
611 | 5528
612 | 10135
613 | 18920
614 | 23131
615 | 9721
616 | 19278
617 | 1221
618 | 2842
619 | 10403
620 | 1272
621 | 7556
622 | 12104
623 | 21382
624 | 5740
625 | 28167
626 | 13752
627 | 19511
628 | 30588
629 | 13726
630 | 13767
631 | 16254
632 | 747
633 | 20209
634 | 20640
635 | 4333
636 | 17020
637 | 5045
638 | 21466
639 | 9788
640 | 25235
641 | 2559
642 | 18748
643 | 5803
644 | 5258
645 | 28288
646 | 19589
647 | 14590
648 | 31751
649 | 17260
650 | 20152
651 | 25514
652 | 17463
653 | 31292
654 | 2930
655 | 29218
656 | 31838
657 | 16246
658 | 14387
659 | 17888
660 | 28299
661 | 15121
662 | 24059
663 | 13632
664 | 22305
665 | 31523
666 | 19351
667 | 18427
668 | 10901
669 | 16535
670 | 17376
671 | 26859
672 | 31802
673 | 9222
674 | 11997
675 | 5196
676 | 2325
677 | 8437
678 | 1147
679 | 29834
680 | 1779
681 | 19280
682 | 11122
683 | 442
684 | 18734
685 | 10709
686 | 26227
687 | 13946
688 | 5720
689 | 6407
690 | 21107
691 | 2601
692 | 837
693 | 20008
694 | 27886
695 | 10125
696 | 5963
697 | 21431
698 | 16182
699 | 25675
700 | 3346
701 | 32487
702 | 21682
703 | 30813
704 | 24657
705 | 24703
706 | 9917
707 | 13280
708 | 15120
709 | 31158
710 | 28671
711 | 23240
712 | 720
713 | 10963
714 | 21514
715 | 10626
716 | 5685
717 | 17212
718 | 10802
719 | 1552
720 | 6719
721 | 1979
722 | 14373
723 | 5008
724 | 1937
725 | 28507
726 | 27099
727 | 23551
728 | 20982
729 | 505
730 | 22207
731 | 921
732 | 32514
733 | 12069
734 | 26183
735 | 11317
736 | 23429
737 | 21033
738 | 12193
739 | 16046
740 | 13696
741 | 32655
742 | 20313
743 | 3407
744 | 29032
745 | 22555
746 | 10862
747 | 26861
748 | 18809
749 | 2855
750 | 21631
751 | 15495
752 | 26650
753 | 12245
754 | 2114
755 | 9646
756 | 31674
757 | 14098
758 | 7354
759 | 8472
760 | 5099
761 | 26448
762 | 19927
763 | 14884
764 | 1816
765 | 29510
766 | 13100
767 | 12197
768 | 19942
769 | 4215
770 | 9093
771 | 21935
772 | 23025
773 | 22664
774 | 12370
775 | 13602
776 | 32267
777 | 30524
778 | 31435
779 | 27816
780 | 3483
781 | 14674
782 | 25960
783 | 28622
784 | 31539
785 | 24633
786 | 18634
787 | 31859
788 | 13996
789 | 7233
790 | 32120
791 | 12284
792 | 23682
793 | 20368
794 | 29784
795 | 31218
796 | 19844
797 | 30663
798 | 2407
799 | 20699
800 | 6465
801 | 12471
802 | 20509
803 | 25972
804 | 16816
805 | 25746
806 | 23297
807 | 21575
808 | 17552
809 | 18026
810 | 4091
811 | 13753
812 | 15019
813 | 28536
814 | 26330
815 | 4284
816 | 18773
817 | 28744
818 | 32317
819 | 623
820 | 21323
821 | 31939
822 | 21508
823 | 31547
824 | 1228
825 | 26057
826 | 31260
827 | 25673
828 | 20526
829 | 20094
830 | 16122
831 | 8200
832 | 1568
833 | 13980
834 | 18691
835 | 31741
836 | 10167
837 | 3291
838 | 3837
839 | 32600
840 | 13836
841 | 30676
842 | 20065
843 | 19723
844 | 3321
845 | 5663
846 | 15106
847 | 13672
848 | 11581
849 | 9541
850 | 16144
851 | 12388
852 | 24725
853 | 4396
854 | 30505
855 | 20811
856 | 4065
857 | 6109
858 | 2035
859 | 24281
860 | 14521
861 | 23902
862 | 31260
863 | 7380
864 | 14101
865 | 27143
866 | 9587
867 | 18547
868 | 24327
869 | 27488
870 | 5467
871 | 8785
872 | 30227
873 | 23444
874 | 1653
875 | 1611
876 | 3866
877 | 20347
878 | 1437
879 | 25319
880 | 15120
881 | 6880
882 | 12035
883 | 27993
884 | 13479
885 | 20136
886 | 21964
887 | 17333
888 | 10880
889 | 15014
890 | 29434
891 | 3923
892 | 14323
893 | 27237
894 | 11206
895 | 26973
896 | 7545
897 | 20881
898 | 26455
899 | 3585
900 | 31650
901 | 7478
902 | 23074
903 | 17144
904 | 28208
905 | 2403
906 | 9105
907 | 22566
908 | 24372
909 | 29296
910 | 30557
911 | 8047
912 | 17621
913 | 32612
914 | 26295
915 | 29611
916 | 24675
917 | 20968
918 | 20570
919 | 13186
920 | 10113
921 | 16027
922 | 8145
923 | 32741
924 | 19282
925 | 27081
926 | 13572
927 | 6578
928 | 1603
929 | 19138
930 | 27836
931 | 25157
932 | 20880
933 | 29351
934 | 12686
935 | 31372
936 | 3484
937 | 23338
938 | 5490
939 | 30746
940 | 4192
941 | 10868
942 | 30453
943 | 21086
944 | 17322
945 | 6206
946 | 20194
947 | 3853
948 | 7361
949 | 12478
950 | 7713
951 | 14616
952 | 10465
953 | 30362
954 | 170
955 | 3428
956 | 3112
957 | 24010
958 | 21436
959 | 27199
960 | 19117
961 | 5940
962 | 28319
963 | 18145
964 | 31294
965 | 30905
966 | 12324
967 | 18946
968 | 14065
969 | 19361
970 | 9043
971 | 28942
972 | 19325
973 | 10224
974 | 19172
975 | 16038
976 | 24055
977 | 26829
978 | 11428
979 | 19188
980 | 28843
981 | 18667
982 | 27577
983 | 1048
984 | 9197
985 | 4154
986 | 13128
987 | 9498
988 | 22317
989 | 20475
990 | 11580
991 | 7145
992 | 3039
993 | 31062
994 | 27407
995 | 18633
996 | 12751
997 | 10498
998 | 14684
999 | 12167
1000 | 15337
1001 | 24005
1002 | 21830
1003 | 22206
1004 | 27741
1005 | 11656
1006 | 28729
1007 | 16274
1008 | 21481
1009 | 31780
1010 | 11596
1011 | 3232
1012 | 7902
1013 | 14332
1014 | 28851
1015 | 7019
1016 | 5164
1017 | 10974
1018 | 8725
1019 | 28894
1020 | 7460
1021 | 6521
1022 | 14055
1023 | 31102
1024 | 19578
1025 | 25387
1026 | 5728
1027 | 32183
1028 | 13479
1029 | 7765
1030 | 24124
1031 | 2404
1032 | 5882
1033 | 18185
1034 | 18079
1035 | 283
1036 | 12783
1037 | 9281
1038 | 7798
1039 | 29341
1040 | 22587
1041 | 31933
1042 | 26463
1043 | 15806
1044 | 12009
1045 | 15564
1046 | 22064
1047 | 10181
1048 | 13643
1049 | 28466
1050 | 27814
1051 | 1370
1052 | 10021
1053 | 13982
1054 | 13648
1055 | 25254
1056 | 21466
1057 | 5968
1058 | 30537
1059 | 14026
1060 | 32026
1061 | 14184
1062 | 14097
1063 | 10812
1064 | 25215
1065 | 5404
1066 | 7402
1067 | 15245
1068 | 26255
1069 | 10376
1070 | 1081
1071 | 958
1072 | 32284
1073 | 25738
1074 | 17194
1075 | 22907
1076 | 20978
1077 | 30545
1078 | 21224
1079 | 23865
1080 | 32284
1081 | 2982
1082 | 2552
1083 | 15710
1084 | 15036
1085 | 14271
1086 | 21762
1087 | 21629
1088 | 2931
1089 | 29076
1090 | 28141
1091 | 11005
1092 | 6685
1093 | 18688
1094 | 30632
1095 | 5091
1096 | 19506
1097 | 569
1098 | 7100
1099 | 21052
1100 | 3104
1101 | 21702
1102 | 10573
1103 | 29381
1104 | 29201
1105 | 32637
1106 | 22458
1107 | 28138
1108 | 3515
1109 | 23084
1110 | 6302
1111 | 26926
1112 | 27516
1113 | 14010
1114 | 12408
1115 | 10880
1116 | 4034
1117 | 25540
1118 | 15928
1119 | 21693
1120 | 19507
1121 | 25167
1122 | 3060
1123 | 2758
1124 | 3613
1125 | 28122
1126 | 32222
1127 | 9418
1128 | 18615
1129 | 5929
1130 | 31882
1131 | 17516
1132 | 23568
1133 | 10704
1134 | 21635
1135 | 27499
1136 | 22340
1137 | 17993
1138 | 30331
1139 | 2832
1140 | 4566
1141 | 55
1142 | 27567
1143 | 16564
1144 | 4319
1145 | 22337
1146 | 31925
1147 | 18426
1148 | 7077
1149 | 10054
1150 | 18757
1151 | 26801
1152 | 3148
1153 | 23563
1154 | 27556
1155 | 10325
1156 | 6624
1157 | 11140
1158 | 22064
1159 | 18522
1160 | 2932
1161 | 21337
1162 | 191
1163 | 5591
1164 | 19110
1165 | 10495
1166 | 22892
1167 | 26036
1168 | 24319
1169 | 17246
1170 | 6450
1171 | 17992
1172 | 2468
1173 | 25543
1174 | 31801
1175 | 21674
1176 | 10053
1177 | 27497
1178 | 897
1179 | 8542
1180 | 12485
1181 | 16540
1182 | 27662
1183 | 20823
1184 | 7484
1185 | 10736
1186 | 2928
1187 | 29714
1188 | 30141
1189 | 4661
1190 | 16848
1191 | 14399
1192 | 1207
1193 | 7547
1194 | 17667
1195 | 20764
1196 | 22652
1197 | 5647
1198 | 13018
1199 | 16301
1200 | 5039
1201 | 18382
1202 | 32496
1203 | 25131
1204 | 31154
1205 | 4146
1206 | 2478
1207 | 4302
1208 | 13889
1209 | 388
1210 | 10278
1211 | 21545
1212 | 24286
1213 | 16370
1214 | 30869
1215 | 2426
1216 | 29067
1217 | 15939
1218 | 3009
1219 | 7389
1220 | 25154
1221 | 30491
1222 | 2749
1223 | 3912
1224 | 7374
1225 | 14636
1226 | 1036
1227 | 32268
1228 | 12614
1229 | 27693
1230 | 25670
1231 | 18770
1232 | 7914
1233 | 2041
1234 | 32620
1235 | 16432
1236 | 31977
1237 | 18822
1238 | 1561
1239 | 14362
1240 | 20235
1241 | 979
1242 | 22476
1243 | 26497
1244 | 16002
1245 | 31830
1246 | 25124
1247 | 29547
1248 | 25216
1249 | 32744
1250 | 451
1251 | 23284
1252 | 32702
1253 | 27340
1254 | 13976
1255 | 593
1256 | 23886
1257 | 15950
1258 | 23350
1259 | 29231
1260 | 8563
1261 | 19152
1262 | 23068
1263 | 8683
1264 | 3611
1265 | 21752
1266 | 18322
1267 | 17604
1268 | 6950
1269 | 18725
1270 | 11774
1271 | 13031
1272 | 26313
1273 | 30188
1274 | 11205
1275 | 32467
1276 | 24608
1277 | 18105
1278 | 13705
1279 | 4249
1280 | 16188
1281 | 12476
1282 | 19518
1283 | 29935
1284 | 30638
1285 | 27066
1286 | 2148
1287 | 28372
1288 | 11409
1289 | 24994
1290 | 30880
1291 | 7277
1292 | 1467
1293 | 5067
1294 | 16049
1295 | 13299
1296 | 3832
1297 | 7765
1298 | 25268
1299 | 28947
1300 | 2471
1301 | 26049
1302 | 19576
1303 | 32582
1304 | 16348
1305 | 6097
1306 | 26444
1307 | 23480
1308 | 1639
1309 | 23504
1310 | 24957
1311 | 30356
1312 | 31690
1313 | 19680
1314 | 16884
1315 | 31783
1316 | 5840
1317 | 30467
1318 | 23524
1319 | 18148
1320 | 7159
1321 | 7045
1322 | 912
1323 | 9701
1324 | 19533
1325 | 23019
1326 | 29262
1327 | 1510
1328 | 12554
1329 | 20072
1330 | 22925
1331 | 12984
1332 | 11307
1333 | 32571
1334 | 10719
1335 | 22642
1336 | 16957
1337 | 27564
1338 | 11230
1339 | 19394
1340 | 4738
1341 | 29427
1342 | 21816
1343 | 1041
1344 | 26469
1345 | 6539
1346 | 26818
1347 | 11410
1348 | 19897
1349 | 4422
1350 | 2930
1351 | 18950
1352 | 589
1353 | 31382
1354 | 21043
1355 | 808
1356 | 31179
1357 | 29785
1358 | 3244
1359 | 18385
1360 | 9975
1361 | 7272
1362 | 32751
1363 | 20041
1364 | 2005
1365 | 26343
1366 | 2689
1367 | 16810
1368 | 8778
1369 | 25484
1370 | 4168
1371 | 7064
1372 | 1189
1373 | 7344
1374 | 19181
1375 | 12107
1376 | 17542
1377 | 15827
1378 | 28827
1379 | 10271
1380 | 14545
1381 | 28611
1382 | 17142
1383 | 12980
1384 | 838
1385 | 24349
1386 | 6380
1387 | 11307
1388 | 3427
1389 | 19043
1390 | 5837
1391 | 14055
1392 | 15018
1393 | 7155
1394 | 3031
1395 | 2526
1396 | 31792
1397 | 5357
1398 | 29871
1399 | 24655
1400 | 1175
1401 | 19049
1402 | 1933
1403 | 13481
1404 | 30807
1405 | 5656
1406 | 6368
1407 | 266
1408 | 31227
1409 | 30329
1410 | 11831
1411 | 8865
1412 | 22551
1413 | 19937
1414 | 13475
1415 | 19089
1416 | 11808
1417 | 9992
1418 | 21124
1419 | 11546
1420 | 1908
1421 | 26469
1422 | 19319
1423 | 7670
1424 | 27860
1425 | 6963
1426 | 17673
1427 | 1681
1428 | 11604
1429 | 16236
1430 | 26687
1431 | 18411
1432 | 4644
1433 | 28517
1434 | 30240
1435 | 31899
1436 | 4879
1437 | 28162
1438 | 2922
1439 | 30413
1440 | 2071
1441 | 106
1442 | 17630
1443 | 31477
1444 | 18532
1445 | 14287
1446 | 18678
1447 | 10415
1448 | 32337
1449 | 30585
1450 | 32715
1451 | 20772
1452 | 10498
1453 | 31116
1454 | 14543
1455 | 20861
1456 | 7742
1457 | 7640
1458 | 26481
1459 | 8278
1460 | 24424
1461 | 27255
1462 | 5057
1463 | 21367
1464 | 22937
1465 | 18302
1466 | 29634
1467 | 898
1468 | 5042
1469 | 26167
1470 | 4324
1471 | 11437
1472 | 16776
1473 | 12325
1474 | 26300
1475 | 2595
1476 | 7344
1477 | 22678
1478 | 14498
1479 | 21696
1480 | 18963
1481 | 29630
1482 | 14857
1483 | 7034
1484 | 19934
1485 | 15503
1486 | 7788
1487 | 17665
1488 | 7931
1489 | 26152
1490 | 12116
1491 | 22207
1492 | 13766
1493 | 9212
1494 | 13493
1495 | 31124
1496 | 1264
1497 | 30029
1498 | 14827
1499 | 8934
1500 | 8081
1501 | 7550
1502 | 2869
1503 | 25490
1504 | 17912
1505 | 29070
1506 | 25905
1507 | 26219
1508 | 13265
1509 | 5523
1510 | 4257
1511 | 13543
1512 | 11832
1513 | 27330
1514 | 17617
1515 | 27649
1516 | 10611
1517 | 32719
1518 | 30807
1519 | 11319
1520 | 28272
1521 | 32081
1522 | 31578
1523 | 19605
1524 | 13661
1525 | 10011
1526 | 31037
1527 | 28103
1528 | 20266
1529 | 22583
1530 | 12528
1531 | 26912
1532 | 644
1533 | 14428
1534 | 5914
1535 | 26953
1536 | 4123
1537 | 21005
1538 | 4376
1539 | 14335
1540 | 30385
1541 | 1932
1542 | 20334
1543 | 30963
1544 | 3836
1545 | 10369
1546 | 29755
1547 | 25090
1548 | 17722
1549 | 15077
1550 | 26409
1551 | 12942
1552 | 23244
1553 | 19090
1554 | 2180
1555 | 8144
1556 | 24370
1557 | 14657
1558 | 14074
1559 | 9076
1560 | 29306
1561 | 3253
1562 | 2787
1563 | 20062
1564 | 28679
1565 | 32272
1566 | 23650
1567 | 7699
1568 | 4724
1569 | 26017
1570 | 6566
1571 | 27226
1572 | 16699
1573 | 23393
1574 | 1034
1575 | 20850
1576 | 6279
1577 | 30013
1578 | 17750
1579 | 13230
1580 | 24201
1581 | 14398
1582 | 12942
1583 | 886
1584 | 12630
1585 | 5611
1586 | 26960
1587 | 16966
1588 | 11060
1589 | 11482
1590 | 30085
1591 | 26780
1592 | 28427
1593 | 29373
1594 | 17732
1595 | 17636
1596 | 23538
1597 | 286
1598 | 1014
1599 | 9349
1600 | 10390
1601 | 22850
1602 | 26270
1603 | 8256
1604 | 2308
1605 | 26820
1606 | 27523
1607 | 3430
1608 | 31342
1609 | 4476
1610 | 27040
1611 | 11213
1612 | 30597
1613 | 32325
1614 | 23905
1615 | 14847
1616 | 14240
1617 | 23921
1618 | 15540
1619 | 10973
1620 | 15889
1621 | 20668
1622 | 22510
1623 | 23307
1624 | 12676
1625 | 16907
1626 | 12995
1627 | 21311
1628 | 2679
1629 | 11596
1630 | 13353
1631 | 16409
1632 | 27866
1633 | 18868
1634 | 18887
1635 | 6117
1636 | 10641
1637 | 27382
1638 | 1573
1639 | 12604
1640 | 7474
1641 | 28676
1642 | 1292
1643 | 11850
1644 | 1333
1645 | 22935
1646 | 7507
1647 | 8050
1648 | 1531
1649 | 21996
1650 | 26412
1651 | 10359
1652 | 29317
1653 | 18461
1654 | 4964
1655 | 29744
1656 | 18459
1657 | 14314
1658 | 860
1659 | 15488
1660 | 10248
1661 | 11043
1662 | 32494
1663 | 18409
1664 | 10551
1665 | 19638
1666 | 215
1667 | 18708
1668 | 13453
1669 | 30632
1670 | 28099
1671 | 11992
1672 | 19972
1673 | 27179
1674 | 25108
1675 | 19560
1676 | 30174
1677 | 18792
1678 | 23383
1679 | 9637
1680 | 369
1681 | 2330
1682 | 29312
1683 | 27455
1684 | 17607
1685 | 7451
1686 | 27291
1687 | 457
1688 | 14123
1689 | 23939
1690 | 5443
1691 | 10481
1692 | 20318
1693 | 14880
1694 | 5438
1695 | 13242
1696 | 8418
1697 | 12738
1698 | 23545
1699 | 23376
1700 | 11612
1701 | 14441
1702 | 31039
1703 | 199
1704 | 18787
1705 | 509
1706 | 164
1707 | 23918
1708 | 437
1709 | 22159
1710 | 32586
1711 | 21731
1712 | 7072
1713 | 10355
1714 | 23575
1715 | 22627
1716 | 15054
1717 | 30985
1718 | 3594
1719 | 27318
1720 | 27680
1721 | 22565
1722 | 24144
1723 | 23438
1724 | 24721
1725 | 550
1726 | 29353
1727 | 16892
1728 | 26554
1729 | 11881
1730 | 16479
1731 | 14310
1732 | 17892
1733 | 11337
1734 | 30699
1735 | 19510
1736 | 4762
1737 | 11554
1738 | 28778
1739 | 11198
1740 | 30655
1741 | 6144
1742 | 11236
1743 | 1822
1744 | 26852
1745 | 12858
1746 | 12030
1747 | 16544
1748 | 24751
1749 | 21398
1750 | 6531
1751 | 13940
1752 | 29899
1753 | 24142
1754 | 27961
1755 | 11043
1756 | 8544
1757 | 14511
1758 | 24033
1759 | 27335
1760 | 23137
1761 | 32357
1762 | 1517
1763 | 10674
1764 | 22015
1765 | 25124
1766 | 2733
1767 | 32390
1768 | 5464
1769 | 16564
1770 | 24569
1771 | 28215
1772 | 20085
1773 | 26927
1774 | 2729
1775 | 3010
1776 | 12943
1777 | 31920
1778 | 16430
1779 | 31194
1780 | 12607
1781 | 21446
1782 | 20492
1783 | 5770
1784 | 15315
1785 | 11902
1786 | 30354
1787 | 8616
1788 | 12515
1789 | 20778
1790 | 20691
1791 | 17452
1792 | 2993
1793 | 29686
1794 | 9001
1795 | 5384
1796 | 1931
1797 | 11301
1798 | 14700
1799 | 13585
1800 | 664
1801 | 19386
1802 | 4719
1803 | 26
1804 | 3907
1805 | 8249
1806 | 27842
1807 | 14100
1808 | 8887
1809 | 32336
1810 | 25957
1811 | 2990
1812 | 14535
1813 | 24597
1814 | 10808
1815 | 13260
1816 | 13113
1817 | 14780
1818 | 1226
1819 | 4512
1820 | 5389
1821 | 32766
1822 | 22420
1823 | 13051
1824 | 28762
1825 | 2039
1826 | 32508
1827 | 25937
1828 | 24385
1829 | 6041
1830 | 11141
1831 | 7070
1832 | 12311
1833 | 14428
1834 | 16572
1835 | 14737
1836 | 9570
1837 | 32590
1838 | 25565
1839 | 21004
1840 | 24650
1841 | 19460
1842 | 29542
1843 | 2819
1844 | 2806
1845 | 14635
1846 | 23197
1847 | 20921
1848 | 10554
1849 | 29581
1850 | 18154
1851 | 17341
1852 | 2436
1853 | 17754
1854 | 24416
1855 | 18716
1856 | 27385
1857 | 24520
1858 | 32315
1859 | 9585
1860 | 32110
1861 | 27839
1862 | 25439
1863 | 32684
1864 | 23984
1865 | 28551
1866 | 1192
1867 | 1509
1868 | 9662
1869 | 25680
1870 | 20399
1871 | 9922
1872 | 22502
1873 | 5713
1874 | 28177
1875 | 23194
1876 | 11722
1877 | 14993
1878 | 11320
1879 | 28319
1880 | 11306
1881 | 1934
1882 | 31993
1883 | 10808
1884 | 23773
1885 | 28982
1886 | 25117
1887 | 12401
1888 | 30646
1889 | 22202
1890 | 20064
1891 | 582
1892 | 5674
1893 | 22570
1894 | 9864
1895 | 10084
1896 | 12388
1897 | 26117
1898 | 5978
1899 | 26215
1900 | 11296
1901 | 22570
1902 | 21373
1903 | 964
1904 | 83
1905 | 18494
1906 | 27503
1907 | 27226
1908 | 1092
1909 | 5100
1910 | 11854
1911 | 22206
1912 | 31772
1913 | 24074
1914 | 19608
1915 | 6956
1916 | 25525
1917 | 15777
1918 | 2186
1919 | 24537
1920 | 4166
1921 | 23555
1922 | 32474
1923 | 15694
1924 | 32161
1925 | 25353
1926 | 31783
1927 | 4572
1928 | 24599
1929 | 9067
1930 | 30812
1931 | 17853
1932 | 6527
1933 | 18491
1934 | 19600
1935 | 27013
1936 | 601
1937 | 5141
1938 | 22045
1939 | 4861
1940 | 927
1941 | 7834
1942 | 28529
1943 | 11304
1944 | 7416
1945 | 5780
1946 | 8540
1947 | 93
1948 | 24660
1949 | 16749
1950 | 15018
1951 | 1972
1952 | 29015
1953 | 30393
1954 | 29131
1955 | 2136
1956 | 3
1957 | 4198
1958 | 11474
1959 | 13671
1960 | 21399
1961 | 2092
1962 | 1533
1963 | 14542
1964 | 24286
1965 | 19636
1966 | 23088
1967 | 6408
1968 | 16440
1969 | 7882
1970 | 6822
1971 | 21516
1972 | 19081
1973 | 28606
1974 | 20170
1975 | 3591
1976 | 9338
1977 | 4845
1978 | 28995
1979 | 11992
1980 | 4824
1981 | 5672
1982 | 28277
1983 | 4871
1984 | 14186
1985 | 19758
1986 | 23800
1987 | 18126
1988 | 22132
1989 | 7767
1990 | 12122
1991 | 19137
1992 | 32461
1993 | 8743
1994 | 7981
1995 | 7687
1996 | 13639
1997 | 20717
1998 | 15034
1999 | 29139
2000 | 22002
2001 | 18664
2002 | 15490
2003 | 12814
2004 | 20342
2005 | 21224
2006 | 32421
2007 | 27216
2008 | 19778
2009 | 21774
2010 | 24849
2011 | 25953
2012 | 1327
2013 | 12705
2014 | 30779
2015 | 25925
2016 | 461
2017 | 13111
2018 | 589
2019 | 5817
2020 | 20858
2021 | 5476
2022 | 4512
2023 | 659
2024 | 22669
2025 | 14696
2026 | 23806
2027 | 28981
2028 | 1861
2029 | 12006
2030 | 5092
2031 | 9484
2032 | 16060
2033 | 23679
2034 | 7113
2035 | 21977
2036 | 32462
2037 | 7914
2038 | 23948
2039 | 12795
2040 | 20620
2041 | 10485
2042 | 9185
2043 | 10910
2044 | 16899
2045 | 9379
2046 | 15205
2047 | 30063
2048 | 25080
2049 | 14946
2050 | 17935
2051 | 31324
2052 | 22756
2053 | 2493
2054 | 31537
2055 | 9522
2056 | 27434
2057 | 7871
2058 | 18026
2059 | 27865
2060 | 32150
2061 | 8940
2062 | 16147
2063 | 2849
2064 | 23292
2065 | 3711
2066 | 18424
2067 | 2206
2068 | 29330
2069 | 11814
2070 | 4256
2071 | 23681
2072 | 7702
2073 | 19212
2074 | 32271
2075 | 32100
2076 | 23327
2077 | 21631
2078 | 422
2079 | 31683
2080 | 32278
2081 | 32659
2082 | 24225
2083 | 17438
2084 | 13132
2085 | 3515
2086 | 26069
2087 | 25630
2088 | 28970
2089 | 6460
2090 | 14833
2091 | 11649
2092 | 29121
2093 | 25569
2094 | 17640
2095 | 19965
2096 | 21587
2097 | 22755
2098 | 28087
2099 | 22857
2100 | 5082
2101 | 23798
2102 | 7498
2103 | 16607
2104 | 18765
2105 | 31093
2106 | 2504
2107 | 31451
2108 | 10693
2109 | 28153
2110 | 2533
2111 | 10089
2112 | 21722
2113 | 16219
2114 | 5355
2115 | 20878
2116 | 27887
2117 | 22902
2118 | 19559
2119 | 5297
2120 | 15533
2121 | 2913
2122 | 15868
2123 | 18133
2124 | 25390
2125 | 31775
2126 | 15765
2127 | 26090
2128 | 25826
2129 | 32641
2130 | 10336
2131 | 24919
2132 | 26213
2133 | 16615
2134 | 14830
2135 | 9950
2136 | 6510
2137 | 23007
2138 | 10145
2139 | 32234
2140 | 10210
2141 | 19294
2142 | 2905
2143 | 16407
2144 | 9401
2145 | 15496
2146 | 13407
2147 | 8729
2148 | 25403
2149 | 3540
2150 | 21604
2151 | 14107
2152 | 12683
2153 | 24866
2154 | 5405
2155 | 22613
2156 | 8396
2157 | 25447
2158 | 7523
2159 | 15302
2160 | 14946
2161 | 25194
2162 | 30475
2163 | 3386
2164 | 17504
2165 | 29251
2166 | 26590
2167 | 3198
2168 | 13367
2169 | 21466
2170 | 16887
2171 | 3612
2172 | 18099
2173 | 11374
2174 | 8111
2175 | 14971
2176 | 2549
2177 | 524
2178 | 20858
2179 | 17915
2180 | 20932
2181 | 14281
2182 | 25991
2183 | 10927
2184 | 1409
2185 | 18329
2186 | 20724
2187 | 7132
2188 | 1568
2189 | 10005
2190 | 16573
2191 | 159
2192 | 9693
2193 | 31264
2194 | 19886
2195 | 24595
2196 | 25641
2197 | 6651
2198 | 24005
2199 | 816
2200 | 26600
2201 | 25780
2202 | 6718
2203 | 9177
2204 | 28149
2205 | 379
2206 | 4809
2207 | 16034
2208 | 32519
2209 | 7008
2210 | 32461
2211 | 2171
2212 | 11235
2213 | 17999
2214 | 2427
2215 | 14095
2216 | 17594
2217 | 7006
2218 | 26403
2219 | 3897
2220 | 17858
2221 | 17439
2222 | 1202
2223 | 27462
2224 | 26815
2225 | 2147
2226 | 11948
2227 | 17275
2228 | 31727
2229 | 13077
2230 | 2108
2231 | 29938
2232 | 29155
2233 | 31819
2234 | 26066
2235 | 12646
2236 | 1533
2237 | 13845
2238 | 11430
2239 | 4698
2240 | 25023
2241 | 22109
2242 | 32415
2243 | 28388
2244 | 25275
2245 | 4912
2246 | 20390
2247 | 3732
2248 | 24800
2249 | 27355
2250 | 29272
2251 | 2387
2252 | 23376
2253 | 6783
2254 | 21216
2255 | 6041
2256 | 13288
2257 | 26983
2258 | 10655
2259 | 3640
2260 | 28320
2261 | 312
2262 | 23519
2263 | 26188
2264 | 828
2265 | 28266
2266 | 27821
2267 | 4706
2268 | 10368
2269 | 11197
2270 | 19974
2271 | 16678
2272 | 31484
2273 | 7663
2274 | 26057
2275 | 24975
2276 | 8296
2277 | 650
2278 | 7985
2279 | 7973
2280 | 29372
2281 | 26161
2282 | 133
2283 | 9378
2284 | 23073
2285 | 18783
2286 | 13007
2287 | 30265
2288 | 2337
2289 | 1378
2290 | 13757
2291 | 4981
2292 | 9047
2293 | 16620
2294 | 5583
2295 | 8119
2296 | 4837
2297 | 11246
2298 | 29865
2299 | 17463
2300 | 31373
2301 | 8806
2302 | 23070
2303 | 11147
2304 | 21194
2305 | 1479
2306 | 23388
2307 | 2842
2308 | 13926
2309 | 27638
2310 | 2447
2311 | 13677
2312 | 24249
2313 | 27986
2314 | 13850
2315 | 1035
2316 | 22573
2317 | 30783
2318 | 7841
2319 | 31470
2320 | 6754
2321 | 11902
2322 | 29456
2323 | 14939
2324 | 17589
2325 | 29300
2326 | 28789
2327 | 11592
2328 | 5220
2329 | 17219
2330 | 22874
2331 | 13232
2332 | 25182
2333 | 8050
2334 | 19479
2335 | 2082
2336 | 10193
2337 | 6610
2338 | 30451
2339 | 10867
2340 | 32651
2341 | 25254
2342 | 6924
2343 | 14750
2344 | 8541
2345 | 7321
2346 | 1328
2347 | 692
2348 | 24816
2349 | 29278
2350 | 29670
2351 | 973
2352 | 11426
2353 | 19896
2354 | 21618
2355 | 31241
2356 | 21265
2357 | 5005
2358 | 30233
2359 | 17237
2360 | 302
2361 | 21458
2362 | 6395
2363 | 20401
2364 | 9017
2365 | 31649
2366 | 25918
2367 | 31163
2368 | 32548
2369 | 28946
2370 | 6687
2371 | 1761
2372 | 25709
2373 | 29700
2374 | 15639
2375 | 19464
2376 | 19508
2377 | 17860
2378 | 26818
2379 | 18507
2380 | 31935
2381 | 2828
2382 | 19981
2383 | 25315
2384 | 14016
2385 | 15664
2386 | 19712
2387 | 14108
2388 | 24315
2389 | 18008
2390 | 26719
2391 | 3380
2392 | 18042
2393 | 29258
2394 | 28194
2395 | 30822
2396 | 24263
2397 | 338
2398 | 20278
2399 | 20152
2400 | 3958
2401 | 257
2402 | 27343
2403 | 5245
2404 | 26469
2405 | 26402
2406 | 26819
2407 | 7339
2408 | 27206
2409 | 16475
2410 | 19585
2411 | 20836
2412 | 4440
2413 | 12832
2414 | 7056
2415 | 6787
2416 | 32144
2417 | 23908
2418 | 9728
2419 | 3079
2420 | 4176
2421 | 32013
2422 | 19611
2423 | 17390
2424 | 18760
2425 | 29481
2426 | 25109
2427 | 20409
2428 | 18956
2429 | 15627
2430 | 26056
2431 | 20015
2432 | 10255
2433 | 27812
2434 | 661
2435 | 32637
2436 | 26686
2437 | 32504
2438 | 11204
2439 | 9094
2440 | 5426
2441 | 17251
2442 | 30351
2443 | 9253
2444 | 29487
2445 | 31970
2446 | 22251
2447 | 12850
2448 | 4862
2449 | 24197
2450 | 14353
2451 | 13887
2452 | 3500
2453 | 8738
2454 | 18079
2455 | 6697
2456 | 16666
2457 | 11779
2458 | 28822
2459 | 25598
2460 | 29581
2461 | 317
2462 | 24148
2463 | 17350
2464 | 19746
2465 | 18837
2466 | 17574
2467 | 19141
2468 | 12556
2469 | 6459
2470 | 28737
2471 | 1175
2472 | 16571
2473 | 1395
2474 | 10761
2475 | 31973
2476 | 26343
2477 | 13800
2478 | 23177
2479 | 30918
2480 | 4710
2481 | 4632
2482 | 19108
2483 | 14211
2484 | 22727
2485 | 14826
2486 | 934
2487 | 29514
2488 | 17274
2489 | 21601
2490 | 14434
2491 | 27606
2492 | 8795
2493 | 30371
2494 | 18516
2495 | 12876
2496 | 31063
2497 | 25794
2498 | 114
2499 | 27545
2500 | 15727
2501 | 10067
2502 | 29640
2503 | 15175
2504 | 3731
2505 | 31478
2506 | 25117
2507 | 31476
2508 | 30152
2509 | 32417
2510 | 27124
2511 | 21088
2512 | 23421
2513 | 4806
2514 | 11730
2515 | 5489
2516 | 29920
2517 | 18225
2518 | 8173
2519 | 10189
2520 | 21647
2521 | 18368
2522 | 5834
2523 | 13587
2524 | 23486
2525 | 27787
2526 | 17045
2527 | 13791
2528 | 22137
2529 | 24605
2530 | 8790
2531 | 16703
2532 | 16474
2533 | 1190
2534 | 25264
2535 | 19921
2536 | 16953
2537 | 6374
2538 | 23603
2539 | 20817
2540 | 6764
2541 | 24436
2542 | 450
2543 | 13732
2544 | 12754
2545 | 23559
2546 | 32008
2547 | 10054
2548 | 77
2549 | 19429
2550 | 17971
2551 | 10255
2552 | 23375
2553 | 12589
2554 | 28254
2555 | 13831
2556 | 2872
2557 | 31247
2558 | 3038
2559 | 9530
2560 | 12502
2561 | 29895
2562 | 24242
2563 | 11916
2564 | 18708
2565 | 13813
2566 | 18011
2567 | 14626
2568 | 21413
2569 | 26904
2570 | 31793
2571 | 20400
2572 | 26995
2573 | 28478
2574 | 8455
2575 | 4088
2576 | 12772
2577 | 20783
2578 | 15345
2579 | 21933
2580 | 29521
2581 | 11386
2582 | 10745
2583 | 11573
2584 | 6091
2585 | 19511
2586 | 27104
2587 | 30380
2588 | 12159
2589 | 28477
2590 | 28686
2591 | 26836
2592 | 6833
2593 | 12169
2594 | 15142
2595 | 16114
2596 | 17331
2597 | 28006
2598 | 29060
2599 | 18538
2600 | 4366
2601 | 23271
2602 | 32408
2603 | 32040
2604 | 13157
2605 | 12222
2606 | 14421
2607 | 2383
2608 | 31774
2609 | 32037
2610 | 20182
2611 | 783
2612 | 4129
2613 | 4886
2614 | 24349
2615 | 8123
2616 | 4118
2617 | 12787
2618 | 955
2619 | 15699
2620 | 24917
2621 | 32327
2622 | 23519
2623 | 5853
2624 | 15723
2625 | 17384
2626 | 11876
2627 | 18756
2628 | 17562
2629 | 28125
2630 | 4259
2631 | 32172
2632 | 11935
2633 | 2828
2634 | 20020
2635 | 19974
2636 | 27053
2637 | 5241
2638 | 20015
2639 | 17145
2640 | 6693
2641 | 20868
2642 | 21753
2643 | 13942
2644 | 9398
2645 | 493
2646 | 14625
2647 | 19361
2648 | 25705
2649 | 6050
2650 | 30636
2651 | 31934
2652 | 32475
2653 | 30878
2654 | 27497
2655 | 433
2656 | 19876
2657 | 10313
2658 | 26616
2659 | 21121
2660 | 12126
2661 | 4276
2662 | 18766
2663 | 14408
2664 | 9555
2665 | 494
2666 | 27415
2667 | 17021
2668 | 20562
2669 | 12610
2670 | 13625
2671 | 19189
2672 | 16298
2673 | 26176
2674 | 2248
2675 | 22324
2676 | 31566
2677 | 26250
2678 | 6797
2679 | 18600
2680 | 24112
2681 | 6468
2682 | 15176
2683 | 5195
2684 | 1257
2685 | 29539
2686 | 15724
2687 | 127
2688 | 14574
2689 | 9333
2690 | 12028
2691 | 561
2692 | 4110
2693 | 5659
2694 | 21485
2695 | 16386
2696 | 4520
2697 | 18237
2698 | 24874
2699 | 5788
2700 | 22182
2701 | 16694
2702 | 29105
2703 | 24628
2704 | 961
2705 | 24614
2706 | 6897
2707 | 28407
2708 | 7392
2709 | 26515
2710 | 14560
2711 | 22252
2712 | 25906
2713 | 26227
2714 | 26968
2715 | 21243
2716 | 31928
2717 | 28648
2718 | 27801
2719 | 26575
2720 | 4734
2721 | 25913
2722 | 5731
2723 | 22546
2724 | 6827
2725 | 29455
2726 | 9084
2727 | 2785
2728 | 6812
2729 | 20061
2730 | 5456
2731 | 16499
2732 | 24608
2733 | 22991
2734 | 25216
2735 | 8245
2736 | 8362
2737 | 3438
2738 | 27098
2739 | 5464
2740 | 13605
2741 | 14041
2742 | 24320
2743 | 4146
2744 | 26081
2745 | 3050
2746 | 8844
2747 | 7488
2748 | 20180
2749 | 18645
2750 | 23931
2751 | 31578
2752 | 32097
2753 | 26655
2754 | 13732
2755 | 15623
2756 | 30452
2757 | 21990
2758 | 2712
2759 | 19856
2760 | 38
2761 | 22737
2762 | 1455
2763 | 15026
2764 | 7285
2765 | 17611
2766 | 31808
2767 | 28255
2768 | 4234
2769 | 19233
2770 | 9324
2771 | 26330
2772 | 8378
2773 | 11925
2774 | 964
2775 | 22306
2776 | 3125
2777 | 4834
2778 | 28926
2779 | 6731
2780 | 24356
2781 | 14182
2782 | 26247
2783 | 6079
2784 | 19807
2785 | 30452
2786 | 13928
2787 | 22261
2788 | 27567
2789 | 10074
2790 | 31986
2791 | 20100
2792 | 26415
2793 | 19214
2794 | 3241
2795 | 9631
2796 | 3687
2797 | 14984
2798 | 28486
2799 | 13236
2800 | 13155
2801 | 4615
2802 | 22749
2803 | 5214
2804 | 3844
2805 | 12381
2806 | 19113
2807 | 6014
2808 | 23108
2809 | 14436
2810 | 24720
2811 | 24149
2812 | 27847
2813 | 5437
2814 | 7778
2815 | 11601
2816 | 1082
2817 | 16379
2818 | 3221
2819 | 15315
2820 | 23832
2821 | 10545
2822 | 11909
2823 | 23898
2824 | 8043
2825 | 25493
2826 | 2445
2827 | 5783
2828 | 4094
2829 | 7220
2830 | 3198
2831 | 5705
2832 | 5361
2833 | 10457
2834 | 29346
2835 | 29648
2836 | 16108
2837 | 19543
2838 | 8865
2839 | 3608
2840 | 12192
2841 | 14106
2842 | 23517
2843 | 7823
2844 | 22186
2845 | 10434
2846 | 8836
2847 | 4602
2848 | 17090
2849 | 2634
2850 | 14888
2851 | 3272
2852 | 17741
2853 | 4951
2854 | 24872
2855 | 30186
2856 | 18220
2857 | 11528
2858 | 15254
2859 | 28793
2860 | 13011
2861 | 23845
2862 | 9962
2863 | 19259
2864 | 32766
2865 | 25447
2866 | 11188
2867 | 30566
2868 | 31379
2869 | 13140
2870 | 23507
2871 | 26614
2872 | 18046
2873 | 20287
2874 | 16737
2875 | 24486
2876 | 312
2877 | 27358
2878 | 22814
2879 | 20980
2880 | 28410
2881 | 14370
2882 | 12051
2883 | 28953
2884 | 3137
2885 | 13524
2886 | 4504
2887 | 291
2888 | 15516
2889 | 7545
2890 | 30261
2891 | 23675
2892 | 14292
2893 | 11275
2894 | 6416
2895 | 18214
2896 | 20410
2897 | 10111
2898 | 8009
2899 | 4235
2900 | 28726
2901 | 26489
2902 | 23730
2903 | 21391
2904 | 9128
2905 | 32207
2906 | 12680
2907 | 6359
2908 | 13239
2909 | 31097
2910 | 12433
2911 | 24902
2912 | 4131
2913 | 28925
2914 | 19178
2915 | 6958
2916 | 24890
2917 | 32610
2918 | 23899
2919 | 13143
2920 | 12029
2921 | 13209
2922 | 10300
2923 | 31436
2924 | 20642
2925 | 6373
2926 | 4305
2927 | 19460
2928 | 29499
2929 | 17455
2930 | 16490
2931 | 9690
2932 | 16270
2933 | 29644
2934 | 28236
2935 | 12888
2936 | 16202
2937 | 7476
2938 | 26389
2939 | 9302
2940 | 12870
2941 | 1270
2942 | 1231
2943 | 7425
2944 | 19805
2945 | 1479
2946 | 17433
2947 | 1304
2948 | 233
2949 | 14115
2950 | 20344
2951 | 22381
2952 | 9906
2953 | 25870
2954 | 24504
2955 | 20529
2956 | 10852
2957 | 5359
2958 | 287
2959 | 29521
2960 | 23721
2961 | 27552
2962 | 11956
2963 | 6188
2964 | 10789
2965 | 12390
2966 | 30894
2967 | 23553
2968 | 9907
2969 | 26030
2970 | 1124
2971 | 15728
2972 | 24683
2973 | 26156
2974 | 19865
2975 | 32465
2976 | 7745
2977 | 5047
2978 | 7876
2979 | 23079
2980 | 28415
2981 | 29569
2982 | 29218
2983 | 8757
2984 | 24080
2985 | 20591
2986 | 25530
2987 | 29470
2988 | 77
2989 | 13833
2990 | 22632
2991 | 31567
2992 | 959
2993 | 86
2994 | 10105
2995 | 18065
2996 | 22816
2997 | 25538
2998 | 27464
2999 | 28469
3000 | 9544
3001 | 14290
3002 | 16339
3003 | 3752
3004 | 10639
3005 | 21144
3006 | 4904
3007 | 21957
3008 | 11455
3009 | 13325
3010 | 15798
3011 | 23877
3012 | 5897
3013 | 30643
3014 | 23492
3015 | 2482
3016 | 21845
3017 | 4903
3018 | 12603
3019 | 13625
3020 | 29230
3021 | 11381
3022 | 27473
3023 | 24859
3024 | 22924
3025 | 22597
3026 | 17434
3027 | 16411
3028 | 29846
3029 | 30406
3030 | 22961
3031 | 31594
3032 | 784
3033 | 4643
3034 | 4179
3035 | 21589
3036 | 8980
3037 | 23653
3038 | 22933
3039 | 2683
3040 | 22661
3041 | 5711
3042 | 31470
3043 | 15457
3044 | 51
3045 | 21799
3046 | 10903
3047 | 7114
3048 | 2930
3049 | 17621
3050 | 22266
3051 | 8164
3052 | 16339
3053 | 22173
3054 | 29535
3055 | 1072
3056 | 9321
3057 | 2179
3058 | 24852
3059 | 11280
3060 | 21297
3061 | 17907
3062 | 9536
3063 | 2991
3064 | 30366
3065 | 18450
3066 | 20920
3067 | 25003
3068 | 12215
3069 | 17411
3070 | 12585
3071 | 15014
3072 | 1727
3073 | 20789
3074 | 21494
3075 | 12837
3076 | 23646
3077 | 26302
3078 | 2864
3079 | 15570
3080 | 13176
3081 | 22933
3082 | 27240
3083 | 24947
3084 | 12018
3085 | 15878
3086 | 18000
3087 | 8339
3088 | 7298
3089 | 31554
3090 | 25809
3091 | 12481
3092 | 8219
3093 | 20975
3094 | 26896
3095 | 7848
3096 | 25503
3097 | 5861
3098 | 3409
3099 | 15396
3100 | 31781
3101 | 11727
3102 | 24238
3103 | 24469
3104 | 32347
3105 | 29524
3106 | 7114
3107 | 3728
3108 | 15840
3109 | 16014
3110 | 22367
3111 | 17719
3112 | 19101
3113 | 11268
3114 | 10846
3115 | 31764
3116 | 16228
3117 | 6987
3118 | 8161
3119 | 12403
3120 | 24708
3121 | 31358
3122 | 29249
3123 | 21075
3124 | 21858
3125 | 27619
3126 | 9448
3127 | 21511
3128 | 14184
3129 | 20940
3130 | 27622
3131 | 17132
3132 | 2689
3133 | 21714
3134 | 4401
3135 | 32261
3136 | 14133
3137 | 29452
3138 | 1060
3139 | 3625
3140 | 15361
3141 | 12198
3142 | 31850
3143 | 6701
3144 | 12515
3145 | 16228
3146 | 24077
3147 | 8048
3148 | 32687
3149 | 3124
3150 | 16391
3151 | 13900
3152 | 19967
3153 | 350
3154 | 9004
3155 | 15055
3156 | 14548
3157 | 23638
3158 | 839
3159 | 18160
3160 | 31465
3161 | 20359
3162 | 27997
3163 | 10601
3164 | 21759
3165 | 10782
3166 | 14898
3167 | 31632
3168 | 8969
3169 | 5221
3170 | 18487
3171 | 475
3172 | 10221
3173 | 20369
3174 | 15579
3175 | 30125
3176 | 16072
3177 | 3578
3178 | 12365
3179 | 11087
3180 | 430
3181 | 26187
3182 | 491
3183 | 15577
3184 | 7706
3185 | 6797
3186 | 12742
3187 | 27855
3188 | 7056
3189 | 29004
3190 | 31046
3191 | 5010
3192 | 24869
3193 | 7103
3194 | 7187
3195 | 14422
3196 | 18409
3197 | 9785
3198 | 2186
3199 | 23270
3200 | 31716
3201 | 10463
3202 | 10919
3203 | 2138
3204 | 27414
3205 | 2966
3206 | 5570
3207 | 18915
3208 | 24373
3209 | 13908
3210 | 24610
3211 | 29613
3212 | 25025
3213 | 7925
3214 | 2864
3215 | 6664
3216 | 29248
3217 | 25947
3218 | 24079
3219 | 7466
3220 | 21789
3221 | 4415
3222 | 11711
3223 | 1115
3224 | 7937
3225 | 21030
3226 | 17613
3227 | 5471
3228 |
--------------------------------------------------------------------------------
/data/custom/public/assets/css/theme-liteyuki-magipoke-base.css:
--------------------------------------------------------------------------------
1 | :root {
2 | --code-background: #1f1f1f;
3 | --code-color: #f8f8f2;
4 | --code-err-background: #960050;
5 | --code-err-color: #1e0010;
6 | --code-hl-background: #ffffcc;
7 | --code-k-color: #66d9ef;
8 | --code-kc-color: #66d9ef;
9 | --code-kd-color: #66d9ef;
10 | --code-kn-color: #f92672;
11 | --code-kp-color: #66d9ef;
12 | --code-kr-color: #66d9ef;
13 | --code-kt-color: #66d9ef;
14 | --code-na-color: #a6e22e;
15 | --code-nc-color: #a6e22e;
16 | --code-no-color: #66d9ef;
17 | --code-nd-color: #a6e22e;
18 | --code-ne-color: #a6e22e;
19 | --code-nf-color: #a6e22e;
20 | --code-nx-color: #a6e22e;
21 | --code-nt-color: #f92672;
22 | --code-l-color: #ae81ff;
23 | --code-ld-color: #e6db74;
24 | --code-s-color: #e6db74;
25 | --code-sa-color: #e6db74;
26 | --code-sb-color: #e6db74;
27 | --code-sc-color: #e6db74;
28 | --code-dl-color: #e6db74;
29 | --code-sd-color: #e6db74;
30 | --code-s2-color: #e6db74;
31 | --code-se-color: #ae81ff;
32 | --code-sh-color: #e6db74;
33 | --code-si-color: #e6db74;
34 | --code-sx-color: #e6db74;
35 | --code-sr-color: #e6db74;
36 | --code-s1-color: #e6db74;
37 | --code-ss-color: #e6db74;
38 | --code-m-color: #ae81ff;
39 | --code-mb-color: #ae81ff;
40 | --code-mf-color: #ae81ff;
41 | --code-mh-color: #ae81ff;
42 | --code-mi-color: #ae81ff;
43 | --code-il-color: #ae81ff;
44 | --code-mo-color: #ae81ff;
45 | --code-o-color: #f92672;
46 | --code-ow-color: #f92672;
47 | --code-c-color: #75715e;
48 | --code-ch-color: #75715e;
49 | --code-cm-color: #75715e;
50 | --code-c1-color: #75715e;
51 | --code-cs-color: #75715e;
52 | --code-cp-color: #75715e;
53 | --code-cpf-color: #75715e;
54 | --code-gd-color: #f92672;
55 | --code-gi-color: #a6e22e;
56 | --code-gu-color: #75715e
57 | }
58 |
59 | .chroma .ui.table tbody tr {
60 | border-color: #333640;
61 | background: var(--code-background)
62 | }
63 |
64 | .chroma,
65 | .markdown:not(code) .highlight pre,
66 | .markdown:not(code) pre {
67 | background-color: var(--code-background);
68 | color: var(--code-color)
69 | }
70 |
71 | .chroma .err {
72 | background-color: var(--code-err-background);
73 | color: var(--code-err-color)
74 | }
75 |
76 | .chroma .lntd {
77 | border: 0;
78 | margin: 0;
79 | padding: 0;
80 | vertical-align: top
81 | }
82 |
83 | .chroma .lntable {
84 | width: auto;
85 | border: 0;
86 | border-spacing: 0;
87 | display: block;
88 | margin: 0;
89 | overflow: auto;
90 | padding: 0
91 | }
92 |
93 | .chroma .hl {
94 | width: 100%;
95 | background-color: var(--code-hl-background);
96 | display: block
97 | }
98 |
99 | .chroma .lnt {
100 | margin-right: .4em;
101 | padding: 0 .4em 0 .4em
102 | }
103 |
104 | .chroma .ln {
105 | margin-right: .4em;
106 | padding: 0 .4em 0 .4em
107 | }
108 |
109 | .chroma .k {
110 | color: var(--code-k-color)
111 | }
112 |
113 | .chroma .kc {
114 | color: var(--code-kc-color)
115 | }
116 |
117 | .chroma .kd {
118 | color: var(--code-kd-color)
119 | }
120 |
121 | .chroma .kn {
122 | color: var(--code-kn-color)
123 | }
124 |
125 | .chroma .kp {
126 | color: var(--code-kp-color)
127 | }
128 |
129 | .chroma .kr {
130 | color: var(--code-kr-color)
131 | }
132 |
133 | .chroma .kt {
134 | color: var(--code-kt-color)
135 | }
136 |
137 | .chroma .n {
138 | color: var(--code-n-color)
139 | }
140 |
141 | .chroma .na {
142 | color: var(--code-na-color)
143 | }
144 |
145 | .chroma .nb {
146 | color: var(--code-nb-color)
147 | }
148 |
149 | .chroma .bp {
150 | color: var(--code-bp-color)
151 | }
152 |
153 | .chroma .nc {
154 | color: var(--code-nc-color)
155 | }
156 |
157 | .chroma .no {
158 | color: var(--code-no-color)
159 | }
160 |
161 | .chroma .nd {
162 | color: var(--code-nd-color)
163 | }
164 |
165 | .chroma .ni {
166 | color: var(--code-ni-color)
167 | }
168 |
169 | .chroma .ne {
170 | color: var(--code-ne-color)
171 | }
172 |
173 | .chroma .nf {
174 | color: var(--code-nf-color)
175 | }
176 |
177 | .chroma .fm {
178 | color: var(--code-fm-color)
179 | }
180 |
181 | .chroma .nl {
182 | color: var(--code-nl-color)
183 | }
184 |
185 | .chroma .nn {
186 | color: var(--code-nn-color)
187 | }
188 |
189 | .chroma .nx {
190 | color: var(--code-nx-color)
191 | }
192 |
193 | .chroma .py {
194 | color: var(--code-py-color)
195 | }
196 |
197 | .chroma .nt {
198 | color: var(--code-nt-color)
199 | }
200 |
201 | .chroma .nv {
202 | color: var(--code-nv-color)
203 | }
204 |
205 | .chroma .vc {
206 | color: var(--code-vc-color)
207 | }
208 |
209 | .chroma .vg {
210 | color: var(--code-vg-color)
211 | }
212 |
213 | .chroma .vi {
214 | color: var(--code-vi-color)
215 | }
216 |
217 | .chroma .vm {
218 | color: var(--code-vm-color)
219 | }
220 |
221 | .chroma .l {
222 | color: var(--code-l-color)
223 | }
224 |
225 | .chroma .ld {
226 | color: var(--code-ld-color)
227 | }
228 |
229 | .chroma .s {
230 | color: var(--code-s-color)
231 | }
232 |
233 | .chroma .sa {
234 | color: var(--code-sa-color)
235 | }
236 |
237 | .chroma .sb {
238 | color: var(--code-sb-color)
239 | }
240 |
241 | .chroma .sc {
242 | color: var(--code-sc-color)
243 | }
244 |
245 | .chroma .dl {
246 | color: var(--code-dl-color)
247 | }
248 |
249 | .chroma .sd {
250 | color: var(--code-sd-color)
251 | }
252 |
253 | .chroma .s2 {
254 | color: var(--code-s2-color)
255 | }
256 |
257 | .chroma .se {
258 | color: var(--code-se-color)
259 | }
260 |
261 | .chroma .sh {
262 | color: var(--code-sh-color)
263 | }
264 |
265 | .chroma .si {
266 | color: var(--code-si-color)
267 | }
268 |
269 | .chroma .sx {
270 | color: var(--code-sx-color)
271 | }
272 |
273 | .chroma .sr {
274 | color: var(--code-sr-color)
275 | }
276 |
277 | .chroma .s1 {
278 | color: var(--code-s1-color)
279 | }
280 |
281 | .chroma .ss {
282 | color: var(--code-ss-color)
283 | }
284 |
285 | .chroma .m {
286 | color: var(--code-m-color)
287 | }
288 |
289 | .chroma .mb {
290 | color: var(--code-mb-color)
291 | }
292 |
293 | .chroma .mf {
294 | color: var(--code-mf-color)
295 | }
296 |
297 | .chroma .mh {
298 | color: var(--code-mh-color)
299 | }
300 |
301 | .chroma .mi {
302 | color: var(--code-mi-color)
303 | }
304 |
305 | .chroma .il {
306 | color: var(--code-il-color)
307 | }
308 |
309 | .chroma .mo {
310 | color: var(--code-mo-color)
311 | }
312 |
313 | .chroma .o {
314 | color: var(--code-o-color)
315 | }
316 |
317 | .chroma .ow {
318 | color: var(--code-ow-color)
319 | }
320 |
321 | .chroma .p {
322 | color: var(--code-p-color)
323 | }
324 |
325 | .chroma .c {
326 | color: var(--code-c-color)
327 | }
328 |
329 | .chroma .ch {
330 | color: var(--code-ch-color)
331 | }
332 |
333 | .chroma .cm {
334 | color: var(--code-cm-color)
335 | }
336 |
337 | .chroma .c1 {
338 | color: var(--code-c1-color)
339 | }
340 |
341 | .chroma .cs {
342 | color: var(--code-cs-color)
343 | }
344 |
345 | .chroma .cp {
346 | color: var(--code-cp-color)
347 | }
348 |
349 | .chroma .cpf {
350 | color: var(--code-cpf-color)
351 | }
352 |
353 | .chroma .gd {
354 | color: var(--code-gd-color)
355 | }
356 |
357 | .chroma .ge {
358 | font-style: italic
359 | }
360 |
361 | .chroma .gi {
362 | color: var(--code-gi-color)
363 | }
364 |
365 | .chroma .gs {
366 | font-weight: 700
367 | }
368 |
369 | .chroma .gu {
370 | color: var(--code-gu-color)
371 | }
372 |
373 | .codicon-add:before {
374 | content: '\ea60' !important
375 | }
376 |
377 | .codicon-plus:before {
378 | content: '\ea60' !important
379 | }
380 |
381 | .codicon-gist-new:before {
382 | content: '\ea60' !important
383 | }
384 |
385 | .codicon-repo-create:before {
386 | content: '\ea60' !important
387 | }
388 |
389 | .codicon-lightbulb:before {
390 | content: '\ea61' !important
391 | }
392 |
393 | .codicon-light-bulb:before {
394 | content: '\ea61' !important
395 | }
396 |
397 | .codicon-repo:before {
398 | content: '\ea62' !important
399 | }
400 |
401 | .codicon-repo-delete:before {
402 | content: '\ea62' !important
403 | }
404 |
405 | .codicon-gist-fork:before {
406 | content: '\ea63' !important
407 | }
408 |
409 | .codicon-repo-forked:before {
410 | content: '\ea63' !important
411 | }
412 |
413 | .codicon-git-pull-request:before {
414 | content: '\ea64' !important
415 | }
416 |
417 | .codicon-git-pull-request-abandoned:before {
418 | content: '\ea64' !important
419 | }
420 |
421 | .codicon-record-keys:before {
422 | content: '\ea65' !important
423 | }
424 |
425 | .codicon-keyboard:before {
426 | content: '\ea65' !important
427 | }
428 |
429 | .codicon-tag:before {
430 | content: '\ea66' !important
431 | }
432 |
433 | .codicon-tag-add:before {
434 | content: '\ea66' !important
435 | }
436 |
437 | .codicon-tag-remove:before {
438 | content: '\ea66' !important
439 | }
440 |
441 | .codicon-person:before {
442 | content: '\ea67' !important
443 | }
444 |
445 | .codicon-person-follow:before {
446 | content: '\ea67' !important
447 | }
448 |
449 | .codicon-person-outline:before {
450 | content: '\ea67' !important
451 | }
452 |
453 | .codicon-person-filled:before {
454 | content: '\ea67' !important
455 | }
456 |
457 | .codicon-git-branch:before {
458 | content: '\ea68' !important
459 | }
460 |
461 | .codicon-git-branch-create:before {
462 | content: '\ea68' !important
463 | }
464 |
465 | .codicon-git-branch-delete:before {
466 | content: '\ea68' !important
467 | }
468 |
469 | .codicon-source-control:before {
470 | content: '\ea68' !important
471 | }
472 |
473 | .codicon-mirror:before {
474 | content: '\ea69' !important
475 | }
476 |
477 | .codicon-mirror-public:before {
478 | content: '\ea69' !important
479 | }
480 |
481 | .codicon-star:before {
482 | content: '\ea6a' !important
483 | }
484 |
485 | .codicon-star-add:before {
486 | content: '\ea6a' !important
487 | }
488 |
489 | .codicon-star-delete:before {
490 | content: '\ea6a' !important
491 | }
492 |
493 | .codicon-star-empty:before {
494 | content: '\ea6a' !important
495 | }
496 |
497 | .codicon-comment:before {
498 | content: '\ea6b' !important
499 | }
500 |
501 | .codicon-comment-add:before {
502 | content: '\ea6b' !important
503 | }
504 |
505 | .codicon-alert:before {
506 | content: '\ea6c' !important
507 | }
508 |
509 | .codicon-warning:before {
510 | content: '\ea6c' !important
511 | }
512 |
513 | .codicon-search:before {
514 | content: '\ea6d' !important
515 | }
516 |
517 | .codicon-search-save:before {
518 | content: '\ea6d' !important
519 | }
520 |
521 | .codicon-log-out:before {
522 | content: '\ea6e' !important
523 | }
524 |
525 | .codicon-sign-out:before {
526 | content: '\ea6e' !important
527 | }
528 |
529 | .codicon-log-in:before {
530 | content: '\ea6f' !important
531 | }
532 |
533 | .codicon-sign-in:before {
534 | content: '\ea6f' !important
535 | }
536 |
537 | .codicon-eye:before {
538 | content: '\ea70' !important
539 | }
540 |
541 | .codicon-eye-unwatch:before {
542 | content: '\ea70' !important
543 | }
544 |
545 | .codicon-eye-watch:before {
546 | content: '\ea70' !important
547 | }
548 |
549 | .codicon-circle-filled:before {
550 | content: '\ea71' !important
551 | }
552 |
553 | .codicon-primitive-dot:before {
554 | content: '\ea71' !important
555 | }
556 |
557 | .codicon-close-dirty:before {
558 | content: '\ea71' !important
559 | }
560 |
561 | .codicon-debug-breakpoint:before {
562 | content: '\ea71' !important
563 | }
564 |
565 | .codicon-debug-breakpoint-disabled:before {
566 | content: '\ea71' !important
567 | }
568 |
569 | .codicon-debug-hint:before {
570 | content: '\ea71' !important
571 | }
572 |
573 | .codicon-primitive-square:before {
574 | content: '\ea72' !important
575 | }
576 |
577 | .codicon-edit:before {
578 | content: '\ea73' !important
579 | }
580 |
581 | .codicon-pencil:before {
582 | content: '\ea73' !important
583 | }
584 |
585 | .codicon-info:before {
586 | content: '\ea74' !important
587 | }
588 |
589 | .codicon-issue-opened:before {
590 | content: '\ea74' !important
591 | }
592 |
593 | .codicon-gist-private:before {
594 | content: '\ea75' !important
595 | }
596 |
597 | .codicon-git-fork-private:before {
598 | content: '\ea75' !important
599 | }
600 |
601 | .codicon-lock:before {
602 | content: '\ea75' !important
603 | }
604 |
605 | .codicon-mirror-private:before {
606 | content: '\ea75' !important
607 | }
608 |
609 | .codicon-close:before {
610 | content: '\ea76' !important
611 | }
612 |
613 | .codicon-remove-close:before {
614 | content: '\ea76' !important
615 | }
616 |
617 | .codicon-x:before {
618 | content: '\ea76' !important
619 | }
620 |
621 | .codicon-repo-sync:before {
622 | content: '\ea77' !important
623 | }
624 |
625 | .codicon-sync:before {
626 | content: '\ea77' !important
627 | }
628 |
629 | .codicon-clone:before {
630 | content: '\ea78' !important
631 | }
632 |
633 | .codicon-desktop-download:before {
634 | content: '\ea78' !important
635 | }
636 |
637 | .codicon-beaker:before {
638 | content: '\ea79' !important
639 | }
640 |
641 | .codicon-microscope:before {
642 | content: '\ea79' !important
643 | }
644 |
645 | .codicon-vm:before {
646 | content: '\ea7a' !important
647 | }
648 |
649 | .codicon-device-desktop:before {
650 | content: '\ea7a' !important
651 | }
652 |
653 | .codicon-file:before {
654 | content: '\ea7b' !important
655 | }
656 |
657 | .codicon-file-text:before {
658 | content: '\ea7b' !important
659 | }
660 |
661 | .codicon-more:before {
662 | content: '\ea7c' !important
663 | }
664 |
665 | .codicon-ellipsis:before {
666 | content: '\ea7c' !important
667 | }
668 |
669 | .codicon-kebab-horizontal:before {
670 | content: '\ea7c' !important
671 | }
672 |
673 | .codicon-mail-reply:before {
674 | content: '\ea7d' !important
675 | }
676 |
677 | .codicon-reply:before {
678 | content: '\ea7d' !important
679 | }
680 |
681 | .codicon-organization:before {
682 | content: '\ea7e' !important
683 | }
684 |
685 | .codicon-organization-filled:before {
686 | content: '\ea7e' !important
687 | }
688 |
689 | .codicon-organization-outline:before {
690 | content: '\ea7e' !important
691 | }
692 |
693 | .codicon-new-file:before {
694 | content: '\ea7f' !important
695 | }
696 |
697 | .codicon-file-add:before {
698 | content: '\ea7f' !important
699 | }
700 |
701 | .codicon-new-folder:before {
702 | content: '\ea80' !important
703 | }
704 |
705 | .codicon-file-directory-create:before {
706 | content: '\ea80' !important
707 | }
708 |
709 | .codicon-trash:before {
710 | content: '\ea81' !important
711 | }
712 |
713 | .codicon-trashcan:before {
714 | content: '\ea81' !important
715 | }
716 |
717 | .codicon-history:before {
718 | content: '\ea82' !important
719 | }
720 |
721 | .codicon-clock:before {
722 | content: '\ea82' !important
723 | }
724 |
725 | .codicon-folder:before {
726 | content: '\ea83' !important
727 | }
728 |
729 | .codicon-file-directory:before {
730 | content: '\ea83' !important
731 | }
732 |
733 | .codicon-symbol-folder:before {
734 | content: '\ea83' !important
735 | }
736 |
737 | .codicon-logo-github:before {
738 | content: '\ea84' !important
739 | }
740 |
741 | .codicon-mark-github:before {
742 | content: '\ea84' !important
743 | }
744 |
745 | .codicon-github:before {
746 | content: '\ea84' !important
747 | }
748 |
749 | .codicon-terminal:before {
750 | content: '\ea85' !important
751 | }
752 |
753 | .codicon-console:before {
754 | content: '\ea85' !important
755 | }
756 |
757 | .codicon-repl:before {
758 | content: '\ea85' !important
759 | }
760 |
761 | .codicon-zap:before {
762 | content: '\ea86' !important
763 | }
764 |
765 | .codicon-symbol-event:before {
766 | content: '\ea86' !important
767 | }
768 |
769 | .codicon-error:before {
770 | content: '\ea87' !important
771 | }
772 |
773 | .codicon-stop:before {
774 | content: '\ea87' !important
775 | }
776 |
777 | .codicon-variable:before {
778 | content: '\ea88' !important
779 | }
780 |
781 | .codicon-symbol-variable:before {
782 | content: '\ea88' !important
783 | }
784 |
785 | .codicon-array:before {
786 | content: '\ea8a' !important
787 | }
788 |
789 | .codicon-symbol-array:before {
790 | content: '\ea8a' !important
791 | }
792 |
793 | .codicon-symbol-module:before {
794 | content: '\ea8b' !important
795 | }
796 |
797 | .codicon-symbol-package:before {
798 | content: '\ea8b' !important
799 | }
800 |
801 | .codicon-symbol-namespace:before {
802 | content: '\ea8b' !important
803 | }
804 |
805 | .codicon-symbol-object:before {
806 | content: '\ea8b' !important
807 | }
808 |
809 | .codicon-symbol-method:before {
810 | content: '\ea8c' !important
811 | }
812 |
813 | .codicon-symbol-function:before {
814 | content: '\ea8c' !important
815 | }
816 |
817 | .codicon-symbol-constructor:before {
818 | content: '\ea8c' !important
819 | }
820 |
821 | .codicon-symbol-boolean:before {
822 | content: '\ea8f' !important
823 | }
824 |
825 | .codicon-symbol-null:before {
826 | content: '\ea8f' !important
827 | }
828 |
829 | .codicon-symbol-numeric:before {
830 | content: '\ea90' !important
831 | }
832 |
833 | .codicon-symbol-number:before {
834 | content: '\ea90' !important
835 | }
836 |
837 | .codicon-symbol-structure:before {
838 | content: '\ea91' !important
839 | }
840 |
841 | .codicon-symbol-struct:before {
842 | content: '\ea91' !important
843 | }
844 |
845 | .codicon-symbol-parameter:before {
846 | content: '\ea92' !important
847 | }
848 |
849 | .codicon-symbol-type-parameter:before {
850 | content: '\ea92' !important
851 | }
852 |
853 | .codicon-symbol-key:before {
854 | content: '\ea93' !important
855 | }
856 |
857 | .codicon-symbol-text:before {
858 | content: '\ea93' !important
859 | }
860 |
861 | .codicon-symbol-reference:before {
862 | content: '\ea94' !important
863 | }
864 |
865 | .codicon-go-to-file:before {
866 | content: '\ea94' !important
867 | }
868 |
869 | .codicon-symbol-enum:before {
870 | content: '\ea95' !important
871 | }
872 |
873 | .codicon-symbol-value:before {
874 | content: '\ea95' !important
875 | }
876 |
877 | .codicon-symbol-ruler:before {
878 | content: '\ea96' !important
879 | }
880 |
881 | .codicon-symbol-unit:before {
882 | content: '\ea96' !important
883 | }
884 |
885 | .codicon-activate-breakpoints:before {
886 | content: '\ea97' !important
887 | }
888 |
889 | .codicon-archive:before {
890 | content: '\ea98' !important
891 | }
892 |
893 | .codicon-arrow-both:before {
894 | content: '\ea99' !important
895 | }
896 |
897 | .codicon-arrow-down:before {
898 | content: '\ea9a' !important
899 | }
900 |
901 | .codicon-arrow-left:before {
902 | content: '\ea9b' !important
903 | }
904 |
905 | .codicon-arrow-right:before {
906 | content: '\ea9c' !important
907 | }
908 |
909 | .codicon-arrow-small-down:before {
910 | content: '\ea9d' !important
911 | }
912 |
913 | .codicon-arrow-small-left:before {
914 | content: '\ea9e' !important
915 | }
916 |
917 | .codicon-arrow-small-right:before {
918 | content: '\ea9f' !important
919 | }
920 |
921 | .codicon-arrow-small-up:before {
922 | content: '\eaa0' !important
923 | }
924 |
925 | .codicon-arrow-up:before {
926 | content: '\eaa1' !important
927 | }
928 |
929 | .codicon-bell:before {
930 | content: '\eaa2' !important
931 | }
932 |
933 | .codicon-bold:before {
934 | content: '\eaa3' !important
935 | }
936 |
937 | .codicon-book:before {
938 | content: '\eaa4' !important
939 | }
940 |
941 | .codicon-bookmark:before {
942 | content: '\eaa5' !important
943 | }
944 |
945 | .codicon-debug-breakpoint-conditional-unverified:before {
946 | content: '\eaa6' !important
947 | }
948 |
949 | .codicon-debug-breakpoint-conditional:before {
950 | content: '\eaa7' !important
951 | }
952 |
953 | .codicon-debug-breakpoint-conditional-disabled:before {
954 | content: '\eaa7' !important
955 | }
956 |
957 | .codicon-debug-breakpoint-data-unverified:before {
958 | content: '\eaa8' !important
959 | }
960 |
961 | .codicon-debug-breakpoint-data:before {
962 | content: '\eaa9' !important
963 | }
964 |
965 | .codicon-debug-breakpoint-data-disabled:before {
966 | content: '\eaa9' !important
967 | }
968 |
969 | .codicon-debug-breakpoint-log-unverified:before {
970 | content: '\eaaa' !important
971 | }
972 |
973 | .codicon-debug-breakpoint-log:before {
974 | content: '\eaab' !important
975 | }
976 |
977 | .codicon-debug-breakpoint-log-disabled:before {
978 | content: '\eaab' !important
979 | }
980 |
981 | .codicon-briefcase:before {
982 | content: '\eaac' !important
983 | }
984 |
985 | .codicon-broadcast:before {
986 | content: '\eaad' !important
987 | }
988 |
989 | .codicon-browser:before {
990 | content: '\eaae' !important
991 | }
992 |
993 | .codicon-bug:before {
994 | content: '\eaaf' !important
995 | }
996 |
997 | .codicon-calendar:before {
998 | content: '\eab0' !important
999 | }
1000 |
1001 | .codicon-case-sensitive:before {
1002 | content: '\eab1' !important
1003 | }
1004 |
1005 | .codicon-check:before {
1006 | content: '\eab2' !important
1007 | }
1008 |
1009 | .codicon-checklist:before {
1010 | content: '\eab3' !important
1011 | }
1012 |
1013 | .codicon-chevron-down:before {
1014 | content: '\eab4' !important
1015 | }
1016 |
1017 | .codicon-drop-down-button:before {
1018 | content: '\eab4' !important
1019 | }
1020 |
1021 | .codicon-chevron-left:before {
1022 | content: '\eab5' !important
1023 | }
1024 |
1025 | .codicon-chevron-right:before {
1026 | content: '\eab6' !important
1027 | }
1028 |
1029 | .codicon-chevron-up:before {
1030 | content: '\eab7' !important
1031 | }
1032 |
1033 | .codicon-chrome-close:before {
1034 | content: '\eab8' !important
1035 | }
1036 |
1037 | .codicon-chrome-maximize:before {
1038 | content: '\eab9' !important
1039 | }
1040 |
1041 | .codicon-chrome-minimize:before {
1042 | content: '\eaba' !important
1043 | }
1044 |
1045 | .codicon-chrome-restore:before {
1046 | content: '\eabb' !important
1047 | }
1048 |
1049 | .codicon-circle-outline:before {
1050 | content: '\eabc' !important
1051 | }
1052 |
1053 | .codicon-debug-breakpoint-unverified:before {
1054 | content: '\eabc' !important
1055 | }
1056 |
1057 | .codicon-circle-slash:before {
1058 | content: '\eabd' !important
1059 | }
1060 |
1061 | .codicon-circuit-board:before {
1062 | content: '\eabe' !important
1063 | }
1064 |
1065 | .codicon-clear-all:before {
1066 | content: '\eabf' !important
1067 | }
1068 |
1069 | .codicon-clippy:before {
1070 | content: '\eac0' !important
1071 | }
1072 |
1073 | .codicon-close-all:before {
1074 | content: '\eac1' !important
1075 | }
1076 |
1077 | .codicon-cloud-download:before {
1078 | content: '\eac2' !important
1079 | }
1080 |
1081 | .codicon-cloud-upload:before {
1082 | content: '\eac3' !important
1083 | }
1084 |
1085 | .codicon-code:before {
1086 | content: '\eac4' !important
1087 | }
1088 |
1089 | .codicon-collapse-all:before {
1090 | content: '\eac5' !important
1091 | }
1092 |
1093 | .codicon-color-mode:before {
1094 | content: '\eac6' !important
1095 | }
1096 |
1097 | .codicon-comment-discussion:before {
1098 | content: '\eac7' !important
1099 | }
1100 |
1101 | .codicon-compare-changes:before {
1102 | content: '\eafd' !important
1103 | }
1104 |
1105 | .codicon-credit-card:before {
1106 | content: '\eac9' !important
1107 | }
1108 |
1109 | .codicon-dash:before {
1110 | content: '\eacc' !important
1111 | }
1112 |
1113 | .codicon-dashboard:before {
1114 | content: '\eacd' !important
1115 | }
1116 |
1117 | .codicon-database:before {
1118 | content: '\eace' !important
1119 | }
1120 |
1121 | .codicon-debug-continue:before {
1122 | content: '\eacf' !important
1123 | }
1124 |
1125 | .codicon-debug-disconnect:before {
1126 | content: '\ead0' !important
1127 | }
1128 |
1129 | .codicon-debug-pause:before {
1130 | content: '\ead1' !important
1131 | }
1132 |
1133 | .codicon-debug-restart:before {
1134 | content: '\ead2' !important
1135 | }
1136 |
1137 | .codicon-debug-start:before {
1138 | content: '\ead3' !important
1139 | }
1140 |
1141 | .codicon-debug-step-into:before {
1142 | content: '\ead4' !important
1143 | }
1144 |
1145 | .codicon-debug-step-out:before {
1146 | content: '\ead5' !important
1147 | }
1148 |
1149 | .codicon-debug-step-over:before {
1150 | content: '\ead6' !important
1151 | }
1152 |
1153 | .codicon-debug-stop:before {
1154 | content: '\ead7' !important
1155 | }
1156 |
1157 | .codicon-debug:before {
1158 | content: '\ead8' !important
1159 | }
1160 |
1161 | .codicon-device-camera-video:before {
1162 | content: '\ead9' !important
1163 | }
1164 |
1165 | .codicon-device-camera:before {
1166 | content: '\eada' !important
1167 | }
1168 |
1169 | .codicon-device-mobile:before {
1170 | content: '\eadb' !important
1171 | }
1172 |
1173 | .codicon-diff-added:before {
1174 | content: '\eadc' !important
1175 | }
1176 |
1177 | .codicon-diff-ignored:before {
1178 | content: '\eadd' !important
1179 | }
1180 |
1181 | .codicon-diff-modified:before {
1182 | content: '\eade' !important
1183 | }
1184 |
1185 | .codicon-diff-removed:before {
1186 | content: '\eadf' !important
1187 | }
1188 |
1189 | .codicon-diff-renamed:before {
1190 | content: '\eae0' !important
1191 | }
1192 |
1193 | .codicon-diff:before {
1194 | content: '\eae1' !important
1195 | }
1196 |
1197 | .codicon-discard:before {
1198 | content: '\eae2' !important
1199 | }
1200 |
1201 | .codicon-editor-layout:before {
1202 | content: '\eae3' !important
1203 | }
1204 |
1205 | .codicon-empty-window:before {
1206 | content: '\eae4' !important
1207 | }
1208 |
1209 | .codicon-exclude:before {
1210 | content: '\eae5' !important
1211 | }
1212 |
1213 | .codicon-extensions:before {
1214 | content: '\eae6' !important
1215 | }
1216 |
1217 | .codicon-eye-closed:before {
1218 | content: '\eae7' !important
1219 | }
1220 |
1221 | .codicon-file-binary:before {
1222 | content: '\eae8' !important
1223 | }
1224 |
1225 | .codicon-file-code:before {
1226 | content: '\eae9' !important
1227 | }
1228 |
1229 | .codicon-file-media:before {
1230 | content: '\eaea' !important
1231 | }
1232 |
1233 | .codicon-file-pdf:before {
1234 | content: '\eaeb' !important
1235 | }
1236 |
1237 | .codicon-file-submodule:before {
1238 | content: '\eaec' !important
1239 | }
1240 |
1241 | .codicon-file-symlink-directory:before {
1242 | content: '\eaed' !important
1243 | }
1244 |
1245 | .codicon-file-symlink-file:before {
1246 | content: '\eaee' !important
1247 | }
1248 |
1249 | .codicon-file-zip:before {
1250 | content: '\eaef' !important
1251 | }
1252 |
1253 | .codicon-files:before {
1254 | content: '\eaf0' !important
1255 | }
1256 |
1257 | .codicon-filter:before {
1258 | content: '\eaf1' !important
1259 | }
1260 |
1261 | .codicon-flame:before {
1262 | content: '\eaf2' !important
1263 | }
1264 |
1265 | .codicon-fold-down:before {
1266 | content: '\eaf3' !important
1267 | }
1268 |
1269 | .codicon-fold-up:before {
1270 | content: '\eaf4' !important
1271 | }
1272 |
1273 | .codicon-fold:before {
1274 | content: '\eaf5' !important
1275 | }
1276 |
1277 | .codicon-folder-active:before {
1278 | content: '\eaf6' !important
1279 | }
1280 |
1281 | .codicon-folder-opened:before {
1282 | content: '\eaf7' !important
1283 | }
1284 |
1285 | .codicon-gear:before {
1286 | content: '\eaf8' !important
1287 | }
1288 |
1289 | .codicon-gift:before {
1290 | content: '\eaf9' !important
1291 | }
1292 |
1293 | .codicon-gist-secret:before {
1294 | content: '\eafa' !important
1295 | }
1296 |
1297 | .codicon-gist:before {
1298 | content: '\eafb' !important
1299 | }
1300 |
1301 | .codicon-git-commit:before {
1302 | content: '\eafc' !important
1303 | }
1304 |
1305 | .codicon-git-compare:before {
1306 | content: '\eafd' !important
1307 | }
1308 |
1309 | .codicon-git-merge:before {
1310 | content: '\eafe' !important
1311 | }
1312 |
1313 | .codicon-github-action:before {
1314 | content: '\eaff' !important
1315 | }
1316 |
1317 | .codicon-github-alt:before {
1318 | content: '\eb00' !important
1319 | }
1320 |
1321 | .codicon-globe:before {
1322 | content: '\eb01' !important
1323 | }
1324 |
1325 | .codicon-grabber:before {
1326 | content: '\eb02' !important
1327 | }
1328 |
1329 | .codicon-graph:before {
1330 | content: '\eb03' !important
1331 | }
1332 |
1333 | .codicon-gripper:before {
1334 | content: '\eb04' !important
1335 | }
1336 |
1337 | .codicon-heart:before {
1338 | content: '\eb05' !important
1339 | }
1340 |
1341 | .codicon-home:before {
1342 | content: '\eb06' !important
1343 | }
1344 |
1345 | .codicon-horizontal-rule:before {
1346 | content: '\eb07' !important
1347 | }
1348 |
1349 | .codicon-hubot:before {
1350 | content: '\eb08' !important
1351 | }
1352 |
1353 | .codicon-inbox:before {
1354 | content: '\eb09' !important
1355 | }
1356 |
1357 | .codicon-issue-closed:before {
1358 | content: '\eba4' !important
1359 | }
1360 |
1361 | .codicon-issue-reopened:before {
1362 | content: '\eb0b' !important
1363 | }
1364 |
1365 | .codicon-issues:before {
1366 | content: '\eb0c' !important
1367 | }
1368 |
1369 | .codicon-italic:before {
1370 | content: '\eb0d' !important
1371 | }
1372 |
1373 | .codicon-jersey:before {
1374 | content: '\eb0e' !important
1375 | }
1376 |
1377 | .codicon-json:before {
1378 | content: '\eb0f' !important
1379 | }
1380 |
1381 | .codicon-kebab-vertical:before {
1382 | content: '\eb10' !important
1383 | }
1384 |
1385 | .codicon-key:before {
1386 | content: '\eb11' !important
1387 | }
1388 |
1389 | .codicon-law:before {
1390 | content: '\eb12' !important
1391 | }
1392 |
1393 | .codicon-lightbulb-autofix:before {
1394 | content: '\eb13' !important
1395 | }
1396 |
1397 | .codicon-link-external:before {
1398 | content: '\eb14' !important
1399 | }
1400 |
1401 | .codicon-link:before {
1402 | content: '\eb15' !important
1403 | }
1404 |
1405 | .codicon-list-ordered:before {
1406 | content: '\eb16' !important
1407 | }
1408 |
1409 | .codicon-list-unordered:before {
1410 | content: '\eb17' !important
1411 | }
1412 |
1413 | .codicon-live-share:before {
1414 | content: '\eb18' !important
1415 | }
1416 |
1417 | .codicon-loading:before {
1418 | content: '\eb19' !important
1419 | }
1420 |
1421 | .codicon-location:before {
1422 | content: '\eb1a' !important
1423 | }
1424 |
1425 | .codicon-mail-read:before {
1426 | content: '\eb1b' !important
1427 | }
1428 |
1429 | .codicon-mail:before {
1430 | content: '\eb1c' !important
1431 | }
1432 |
1433 | .codicon-markdown:before {
1434 | content: '\eb1d' !important
1435 | }
1436 |
1437 | .codicon-megaphone:before {
1438 | content: '\eb1e' !important
1439 | }
1440 |
1441 | .codicon-mention:before {
1442 | content: '\eb1f' !important
1443 | }
1444 |
1445 | .codicon-milestone:before {
1446 | content: '\eb20' !important
1447 | }
1448 |
1449 | .codicon-mortar-board:before {
1450 | content: '\eb21' !important
1451 | }
1452 |
1453 | .codicon-move:before {
1454 | content: '\eb22' !important
1455 | }
1456 |
1457 | .codicon-multiple-windows:before {
1458 | content: '\eb23' !important
1459 | }
1460 |
1461 | .codicon-mute:before {
1462 | content: '\eb24' !important
1463 | }
1464 |
1465 | .codicon-no-newline:before {
1466 | content: '\eb25' !important
1467 | }
1468 |
1469 | .codicon-note:before {
1470 | content: '\eb26' !important
1471 | }
1472 |
1473 | .codicon-octoface:before {
1474 | content: '\eb27' !important
1475 | }
1476 |
1477 | .codicon-open-preview:before {
1478 | content: '\eb28' !important
1479 | }
1480 |
1481 | .codicon-package:before {
1482 | content: '\eb29' !important
1483 | }
1484 |
1485 | .codicon-paintcan:before {
1486 | content: '\eb2a' !important
1487 | }
1488 |
1489 | .codicon-pin:before {
1490 | content: '\eb2b' !important
1491 | }
1492 |
1493 | .codicon-play:before {
1494 | content: '\eb2c' !important
1495 | }
1496 |
1497 | .codicon-run:before {
1498 | content: '\eb2c' !important
1499 | }
1500 |
1501 | .codicon-plug:before {
1502 | content: '\eb2d' !important
1503 | }
1504 |
1505 | .codicon-preserve-case:before {
1506 | content: '\eb2e' !important
1507 | }
1508 |
1509 | .codicon-preview:before {
1510 | content: '\eb2f' !important
1511 | }
1512 |
1513 | .codicon-project:before {
1514 | content: '\eb30' !important
1515 | }
1516 |
1517 | .codicon-pulse:before {
1518 | content: '\eb31' !important
1519 | }
1520 |
1521 | .codicon-question:before {
1522 | content: '\eb32' !important
1523 | }
1524 |
1525 | .codicon-quote:before {
1526 | content: '\eb33' !important
1527 | }
1528 |
1529 | .codicon-radio-tower:before {
1530 | content: '\eb34' !important
1531 | }
1532 |
1533 | .codicon-reactions:before {
1534 | content: '\eb35' !important
1535 | }
1536 |
1537 | .codicon-references:before {
1538 | content: '\eb36' !important
1539 | }
1540 |
1541 | .codicon-refresh:before {
1542 | content: '\eb37' !important
1543 | }
1544 |
1545 | .codicon-regex:before {
1546 | content: '\eb38' !important
1547 | }
1548 |
1549 | .codicon-remote-explorer:before {
1550 | content: '\eb39' !important
1551 | }
1552 |
1553 | .codicon-remote:before {
1554 | content: '\eb3a' !important
1555 | }
1556 |
1557 | .codicon-remove:before {
1558 | content: '\eb3b' !important
1559 | }
1560 |
1561 | .codicon-replace-all:before {
1562 | content: '\eb3c' !important
1563 | }
1564 |
1565 | .codicon-replace:before {
1566 | content: '\eb3d' !important
1567 | }
1568 |
1569 | .codicon-repo-clone:before {
1570 | content: '\eb3e' !important
1571 | }
1572 |
1573 | .codicon-repo-force-push:before {
1574 | content: '\eb3f' !important
1575 | }
1576 |
1577 | .codicon-repo-pull:before {
1578 | content: '\eb40' !important
1579 | }
1580 |
1581 | .codicon-repo-push:before {
1582 | content: '\eb41' !important
1583 | }
1584 |
1585 | .codicon-report:before {
1586 | content: '\eb42' !important
1587 | }
1588 |
1589 | .codicon-request-changes:before {
1590 | content: '\eb43' !important
1591 | }
1592 |
1593 | .codicon-rocket:before {
1594 | content: '\eb44' !important
1595 | }
1596 |
1597 | .codicon-root-folder-opened:before {
1598 | content: '\eb45' !important
1599 | }
1600 |
1601 | .codicon-root-folder:before {
1602 | content: '\eb46' !important
1603 | }
1604 |
1605 | .codicon-rss:before {
1606 | content: '\eb47' !important
1607 | }
1608 |
1609 | .codicon-ruby:before {
1610 | content: '\eb48' !important
1611 | }
1612 |
1613 | .codicon-save-all:before {
1614 | content: '\eb49' !important
1615 | }
1616 |
1617 | .codicon-save-as:before {
1618 | content: '\eb4a' !important
1619 | }
1620 |
1621 | .codicon-save:before {
1622 | content: '\eb4b' !important
1623 | }
1624 |
1625 | .codicon-screen-full:before {
1626 | content: '\eb4c' !important
1627 | }
1628 |
1629 | .codicon-screen-normal:before {
1630 | content: '\eb4d' !important
1631 | }
1632 |
1633 | .codicon-search-stop:before {
1634 | content: '\eb4e' !important
1635 | }
1636 |
1637 | .codicon-server:before {
1638 | content: '\eb50' !important
1639 | }
1640 |
1641 | .codicon-settings-gear:before {
1642 | content: '\eb51' !important
1643 | }
1644 |
1645 | .codicon-settings:before {
1646 | content: '\eb52' !important
1647 | }
1648 |
1649 | .codicon-shield:before {
1650 | content: '\eb53' !important
1651 | }
1652 |
1653 | .codicon-smiley:before {
1654 | content: '\eb54' !important
1655 | }
1656 |
1657 | .codicon-sort-precedence:before {
1658 | content: '\eb55' !important
1659 | }
1660 |
1661 | .codicon-split-horizontal:before {
1662 | content: '\eb56' !important
1663 | }
1664 |
1665 | .codicon-split-vertical:before {
1666 | content: '\eb57' !important
1667 | }
1668 |
1669 | .codicon-squirrel:before {
1670 | content: '\eb58' !important
1671 | }
1672 |
1673 | .codicon-star-full:before {
1674 | content: '\eb59' !important
1675 | }
1676 |
1677 | .codicon-star-half:before {
1678 | content: '\eb5a' !important
1679 | }
1680 |
1681 | .codicon-symbol-class:before {
1682 | content: '\eb5b' !important
1683 | }
1684 |
1685 | .codicon-symbol-color:before {
1686 | content: '\eb5c' !important
1687 | }
1688 |
1689 | .codicon-symbol-constant:before {
1690 | content: '\eb5d' !important
1691 | }
1692 |
1693 | .codicon-symbol-enum-member:before {
1694 | content: '\eb5e' !important
1695 | }
1696 |
1697 | .codicon-symbol-field:before {
1698 | content: '\eb5f' !important
1699 | }
1700 |
1701 | .codicon-symbol-file:before {
1702 | content: '\eb60' !important
1703 | }
1704 |
1705 | .codicon-symbol-interface:before {
1706 | content: '\eb61' !important
1707 | }
1708 |
1709 | .codicon-symbol-keyword:before {
1710 | content: '\eb62' !important
1711 | }
1712 |
1713 | .codicon-symbol-misc:before {
1714 | content: '\eb63' !important
1715 | }
1716 |
1717 | .codicon-symbol-operator:before {
1718 | content: '\eb64' !important
1719 | }
1720 |
1721 | .codicon-symbol-property:before {
1722 | content: '\eb65' !important
1723 | }
1724 |
1725 | .codicon-wrench:before {
1726 | content: '\eb65' !important
1727 | }
1728 |
1729 | .codicon-wrench-subaction:before {
1730 | content: '\eb65' !important
1731 | }
1732 |
1733 | .codicon-symbol-snippet:before {
1734 | content: '\eb66' !important
1735 | }
1736 |
1737 | .codicon-tasklist:before {
1738 | content: '\eb67' !important
1739 | }
1740 |
1741 | .codicon-telescope:before {
1742 | content: '\eb68' !important
1743 | }
1744 |
1745 | .codicon-text-size:before {
1746 | content: '\eb69' !important
1747 | }
1748 |
1749 | .codicon-three-bars:before {
1750 | content: '\eb6a' !important
1751 | }
1752 |
1753 | .codicon-thumbsdown:before {
1754 | content: '\eb6b' !important
1755 | }
1756 |
1757 | .codicon-thumbsup:before {
1758 | content: '\eb6c' !important
1759 | }
1760 |
1761 | .codicon-tools:before {
1762 | content: '\eb6d' !important
1763 | }
1764 |
1765 | .codicon-triangle-down:before {
1766 | content: '\eb6e' !important
1767 | }
1768 |
1769 | .codicon-triangle-left:before {
1770 | content: '\eb6f' !important
1771 | }
1772 |
1773 | .codicon-triangle-right:before {
1774 | content: '\eb70' !important
1775 | }
1776 |
1777 | .codicon-triangle-up:before {
1778 | content: '\eb71' !important
1779 | }
1780 |
1781 | .codicon-twitter:before {
1782 | content: '\eb72' !important
1783 | }
1784 |
1785 | .codicon-unfold:before {
1786 | content: '\eb73' !important
1787 | }
1788 |
1789 | .codicon-unlock:before {
1790 | content: '\eb74' !important
1791 | }
1792 |
1793 | .codicon-unmute:before {
1794 | content: '\eb75' !important
1795 | }
1796 |
1797 | .codicon-unverified:before {
1798 | content: '\eb76' !important
1799 | }
1800 |
1801 | .codicon-verified:before {
1802 | content: '\eb77' !important
1803 | }
1804 |
1805 | .codicon-versions:before {
1806 | content: '\eb78' !important
1807 | }
1808 |
1809 | .codicon-vm-active:before {
1810 | content: '\eb79' !important
1811 | }
1812 |
1813 | .codicon-vm-outline:before {
1814 | content: '\eb7a' !important
1815 | }
1816 |
1817 | .codicon-vm-running:before {
1818 | content: '\eb7b' !important
1819 | }
1820 |
1821 | .codicon-watch:before {
1822 | content: '\eb7c' !important
1823 | }
1824 |
1825 | .codicon-whitespace:before {
1826 | content: '\eb7d' !important
1827 | }
1828 |
1829 | .codicon-whole-word:before {
1830 | content: '\eb7e' !important
1831 | }
1832 |
1833 | .codicon-window:before {
1834 | content: '\eb7f' !important
1835 | }
1836 |
1837 | .codicon-word-wrap:before {
1838 | content: '\eb80' !important
1839 | }
1840 |
1841 | .codicon-zoom-in:before {
1842 | content: '\eb81' !important
1843 | }
1844 |
1845 | .codicon-zoom-out:before {
1846 | content: '\eb82' !important
1847 | }
1848 |
1849 | .codicon-list-filter:before {
1850 | content: '\eb83' !important
1851 | }
1852 |
1853 | .codicon-list-flat:before {
1854 | content: '\eb84' !important
1855 | }
1856 |
1857 | .codicon-list-selection:before {
1858 | content: '\eb85' !important
1859 | }
1860 |
1861 | .codicon-selection:before {
1862 | content: '\eb85' !important
1863 | }
1864 |
1865 | .codicon-list-tree:before {
1866 | content: '\eb86' !important
1867 | }
1868 |
1869 | .codicon-debug-breakpoint-function-unverified:before {
1870 | content: '\eb87' !important
1871 | }
1872 |
1873 | .codicon-debug-breakpoint-function:before {
1874 | content: '\eb88' !important
1875 | }
1876 |
1877 | .codicon-debug-breakpoint-function-disabled:before {
1878 | content: '\eb88' !important
1879 | }
1880 |
1881 | .codicon-debug-stackframe-active:before {
1882 | content: '\eb89' !important
1883 | }
1884 |
1885 | .codicon-debug-stackframe-dot:before {
1886 | content: '\eb8a' !important
1887 | }
1888 |
1889 | .codicon-debug-stackframe:before {
1890 | content: '\eb8b' !important
1891 | }
1892 |
1893 | .codicon-debug-stackframe-focused:before {
1894 | content: '\eb8b' !important
1895 | }
1896 |
1897 | .codicon-debug-breakpoint-unsupported:before {
1898 | content: '\eb8c' !important
1899 | }
1900 |
1901 | .codicon-symbol-string:before {
1902 | content: '\eb8d' !important
1903 | }
1904 |
1905 | .codicon-debug-reverse-continue:before {
1906 | content: '\eb8e' !important
1907 | }
1908 |
1909 | .codicon-debug-step-back:before {
1910 | content: '\eb8f' !important
1911 | }
1912 |
1913 | .codicon-debug-restart-frame:before {
1914 | content: '\eb90' !important
1915 | }
1916 |
1917 | .codicon-call-incoming:before {
1918 | content: '\eb92' !important
1919 | }
1920 |
1921 | .codicon-call-outgoing:before {
1922 | content: '\eb93' !important
1923 | }
1924 |
1925 | .codicon-menu:before {
1926 | content: '\eb94' !important
1927 | }
1928 |
1929 | .codicon-expand-all:before {
1930 | content: '\eb95' !important
1931 | }
1932 |
1933 | .codicon-feedback:before {
1934 | content: '\eb96' !important
1935 | }
1936 |
1937 | .codicon-group-by-ref-type:before {
1938 | content: '\eb97' !important
1939 | }
1940 |
1941 | .codicon-ungroup-by-ref-type:before {
1942 | content: '\eb98' !important
1943 | }
1944 |
1945 | .codicon-account:before {
1946 | content: '\eb99' !important
1947 | }
1948 |
1949 | .codicon-bell-dot:before {
1950 | content: '\eb9a' !important
1951 | }
1952 |
1953 | .codicon-debug-console:before {
1954 | content: '\eb9b' !important
1955 | }
1956 |
1957 | .codicon-library:before {
1958 | content: '\eb9c' !important
1959 | }
1960 |
1961 | .codicon-output:before {
1962 | content: '\eb9d' !important
1963 | }
1964 |
1965 | .codicon-run-all:before {
1966 | content: '\eb9e' !important
1967 | }
1968 |
1969 | .codicon-sync-ignored:before {
1970 | content: '\eb9f' !important
1971 | }
1972 |
1973 | .codicon-pinned:before {
1974 | content: '\eba0' !important
1975 | }
1976 |
1977 | .codicon-github-inverted:before {
1978 | content: '\eba1' !important
1979 | }
1980 |
1981 | .codicon-debug-alt:before {
1982 | content: '\eb91' !important
1983 | }
1984 |
1985 | .codicon-server-process:before {
1986 | content: '\eba2' !important
1987 | }
1988 |
1989 | .codicon-server-environment:before {
1990 | content: '\eba3' !important
1991 | }
1992 |
1993 | .codicon-pass:before {
1994 | content: '\eba4' !important
1995 | }
1996 |
1997 | .codicon-stop-circle:before {
1998 | content: '\eba5' !important
1999 | }
2000 |
2001 | .codicon-play-circle:before {
2002 | content: '\eba6' !important
2003 | }
2004 |
2005 | .codicon-record:before {
2006 | content: '\eba7' !important
2007 | }
2008 |
2009 | .codicon-debug-alt-small:before {
2010 | content: '\eba8' !important
2011 | }
2012 |
2013 | .codicon-vm-connect:before {
2014 | content: '\eba9' !important
2015 | }
2016 |
2017 | .codicon-cloud:before {
2018 | content: '\ebaa' !important
2019 | }
2020 |
2021 | .codicon-merge:before {
2022 | content: '\ebab' !important
2023 | }
2024 |
2025 | .codicon-export:before {
2026 | content: '\ebac' !important
2027 | }
2028 |
2029 | .codicon-graph-left:before {
2030 | content: '\ebad' !important
2031 | }
2032 |
2033 | .codicon-magnet:before {
2034 | content: '\ebae' !important
2035 | }
2036 |
2037 | .codicon-notebook:before {
2038 | content: '\ebaf' !important
2039 | }
2040 |
2041 | .codicon-redo:before {
2042 | content: '\ebb0' !important
2043 | }
2044 |
2045 | .codicon-check-all:before {
2046 | content: '\ebb1' !important
2047 | }
2048 |
2049 | .codicon-pinned-dirty:before {
2050 | content: '\ebb2' !important
2051 | }
2052 |
2053 | .codicon-pass-filled:before {
2054 | content: '\ebb3' !important
2055 | }
2056 |
2057 | .codicon-circle-large-filled:before {
2058 | content: '\ebb4' !important
2059 | }
2060 |
2061 | .codicon-circle-large-outline:before {
2062 | content: '\ebb5' !important
2063 | }
2064 |
2065 | .codicon-combine:before {
2066 | content: '\ebb6' !important
2067 | }
2068 |
2069 | .codicon-gather:before {
2070 | content: '\ebb6' !important
2071 | }
2072 |
2073 | .codicon-table:before {
2074 | content: '\ebb7' !important
2075 | }
2076 |
2077 | .codicon-variable-group:before {
2078 | content: '\ebb8' !important
2079 | }
2080 |
2081 | .codicon-type-hierarchy:before {
2082 | content: '\ebb9' !important
2083 | }
2084 |
2085 | .codicon-type-hierarchy-sub:before {
2086 | content: '\ebba' !important
2087 | }
2088 |
2089 | .codicon-type-hierarchy-super:before {
2090 | content: '\ebbb' !important
2091 | }
2092 |
2093 | .codicon-git-pull-request-create:before {
2094 | content: '\ebbc' !important
2095 | }
2096 |
2097 | .codicon-run-above:before {
2098 | content: '\ebbd' !important
2099 | }
2100 |
2101 | .codicon-run-below:before {
2102 | content: '\ebbe' !important
2103 | }
2104 |
2105 | .codicon-notebook-template:before {
2106 | content: '\ebbf' !important
2107 | }
2108 |
2109 | .codicon-debug-rerun:before {
2110 | content: '\ebc0' !important
2111 | }
2112 |
2113 | .codicon-workspace-trusted:before {
2114 | content: '\ebc1' !important
2115 | }
2116 |
2117 | .codicon-workspace-untrusted:before {
2118 | content: '\ebc2' !important
2119 | }
2120 |
2121 | .codicon-workspace-unspecified:before {
2122 | content: '\ebc3' !important
2123 | }
2124 |
2125 | .codicon-terminal-cmd:before {
2126 | content: '\ebc4' !important
2127 | }
2128 |
2129 | .codicon-terminal-debian:before {
2130 | content: '\ebc5' !important
2131 | }
2132 |
2133 | .codicon-terminal-linux:before {
2134 | content: '\ebc6' !important
2135 | }
2136 |
2137 | .codicon-terminal-powershell:before {
2138 | content: '\ebc7' !important
2139 | }
2140 |
2141 | .codicon-terminal-tmux:before {
2142 | content: '\ebc8' !important
2143 | }
2144 |
2145 | .codicon-terminal-ubuntu:before {
2146 | content: '\ebc9' !important
2147 | }
2148 |
2149 | .codicon-terminal-bash:before {
2150 | content: '\ebca' !important
2151 | }
2152 |
2153 | .codicon-arrow-swap:before {
2154 | content: '\ebcb' !important
2155 | }
2156 |
2157 | .codicon-copy:before {
2158 | content: '\ebcc' !important
2159 | }
2160 |
2161 | .codicon-person-add:before {
2162 | content: '\ebcd' !important
2163 | }
2164 |
2165 | .codicon-filter-filled:before {
2166 | content: '\ebce' !important
2167 | }
2168 |
2169 | .codicon-wand:before {
2170 | content: '\ebcf' !important
2171 | }
2172 |
2173 | .codicon-debug-line-by-line:before {
2174 | content: '\ebd0' !important
2175 | }
2176 |
2177 | .codicon-inspect:before {
2178 | content: '\ebd1' !important
2179 | }
2180 |
2181 | .codicon-layers:before {
2182 | content: '\ebd2' !important
2183 | }
2184 |
2185 | .codicon-layers-dot:before {
2186 | content: '\ebd3' !important
2187 | }
2188 |
2189 | .codicon-layers-active:before {
2190 | content: '\ebd4' !important
2191 | }
2192 |
2193 | .codicon-compass:before {
2194 | content: '\ebd5' !important
2195 | }
2196 |
2197 | .codicon-compass-dot:before {
2198 | content: '\ebd6' !important
2199 | }
2200 |
2201 | .codicon-compass-active:before {
2202 | content: '\ebd7' !important
2203 | }
2204 |
2205 | .codicon-azure:before {
2206 | content: '\ebd8' !important
2207 | }
2208 |
2209 | .codicon-issue-draft:before {
2210 | content: '\ebd9' !important
2211 | }
2212 |
2213 | .codicon-git-pull-request-closed:before {
2214 | content: '\ebda' !important
2215 | }
2216 |
2217 | .codicon-git-pull-request-draft:before {
2218 | content: '\ebdb' !important
2219 | }
2220 |
2221 | .codicon-debug-all:before {
2222 | content: '\ebdc' !important
2223 | }
2224 |
2225 | .codicon-debug-coverage:before {
2226 | content: '\ebdd' !important
2227 | }
2228 |
2229 | .codicon-run-errors:before {
2230 | content: '\ebde' !important
2231 | }
2232 |
2233 | .codicon-folder-library:before {
2234 | content: '\ebdf' !important
2235 | }
2236 |
2237 | .codicon-debug-continue-small:before {
2238 | content: '\ebe0' !important
2239 | }
2240 |
2241 | .codicon-beaker-stop:before {
2242 | content: '\ebe1' !important
2243 | }
2244 |
2245 | .codicon-graph-line:before {
2246 | content: '\ebe2' !important
2247 | }
2248 |
2249 | .codicon-graph-scatter:before {
2250 | content: '\ebe3' !important
2251 | }
2252 |
2253 | .codicon-pie-chart:before {
2254 | content: '\ebe4' !important
2255 | }
2256 |
2257 | .codicon-bracket:before {
2258 | content: '\eb0f' !important
2259 | }
2260 |
2261 | .codicon-bracket-dot:before {
2262 | content: '\ebe5' !important
2263 | }
2264 |
2265 | .codicon-bracket-error:before {
2266 | content: '\ebe6' !important
2267 | }
2268 |
2269 | .codicon-lock-small:before {
2270 | content: '\ebe7' !important
2271 | }
2272 |
2273 | .codicon-azure-devops:before {
2274 | content: '\ebe8' !important
2275 | }
2276 |
2277 | .codicon-verified-filled:before {
2278 | content: '\ebe9' !important
2279 | }
2280 |
2281 | .codicon-tree-item-expanded:before {
2282 | content: '\eab4' !important
2283 | }
2284 |
2285 | .codicon-tree-filter-on-type-on:before {
2286 | content: '\eb83' !important
2287 | }
2288 |
2289 | .codicon-tree-filter-on-type-off:before {
2290 | content: '\eb85' !important
2291 | }
2292 |
2293 | .codicon-tree-filter-clear:before {
2294 | content: '\ea76' !important
2295 | }
2296 |
2297 | .codicon-tree-item-loading:before {
2298 | content: '\eb19' !important
2299 | }
2300 |
2301 | .codicon-scrollbar-button-left:before {
2302 | content: '\eb6f' !important
2303 | }
2304 |
2305 | .codicon-scrollbar-button-right:before {
2306 | content: '\eb70' !important
2307 | }
2308 |
2309 | .codicon-scrollbar-button-up:before {
2310 | content: '\eb71' !important
2311 | }
2312 |
2313 | .codicon-scrollbar-button-down:before {
2314 | content: '\eb6e' !important
2315 | }
2316 |
2317 | .codicon-menu-selection:before {
2318 | content: '\eab2' !important
2319 | }
2320 |
2321 | .codicon-menu-submenu:before {
2322 | content: '\eab6' !important
2323 | }
2324 |
2325 | .codicon-quick-input-back:before {
2326 | content: '\ea9b' !important
2327 | }
2328 |
2329 | .codicon-widget-close:before {
2330 | content: '\ea76' !important
2331 | }
2332 |
2333 | .codicon-diff-review-insert:before {
2334 | content: '\ea60' !important
2335 | }
2336 |
2337 | .codicon-diff-review-remove:before {
2338 | content: '\eb3b' !important
2339 | }
2340 |
2341 | .codicon-diff-review-close:before {
2342 | content: '\ea76' !important
2343 | }
2344 |
2345 | .codicon-parameter-hints-next:before {
2346 | content: '\eab4' !important
2347 | }
2348 |
2349 | .codicon-parameter-hints-previous:before {
2350 | content: '\eab7' !important
2351 | }
2352 |
2353 | .codicon-suggest-more-info:before {
2354 | content: '\eab6' !important
2355 | }
2356 |
2357 | .codicon-diff-insert:before {
2358 | content: '\ea60' !important
2359 | }
2360 |
2361 | .codicon-diff-remove:before {
2362 | content: '\eb3b' !important
2363 | }
2364 |
2365 | .codicon-find-selection:before {
2366 | content: '\eb85' !important
2367 | }
2368 |
2369 | .codicon-find-collapsed:before {
2370 | content: '\eab6' !important
2371 | }
2372 |
2373 | .codicon-find-expanded:before {
2374 | content: '\eab4' !important
2375 | }
2376 |
2377 | .codicon-find-replace:before {
2378 | content: '\eb3d' !important
2379 | }
2380 |
2381 | .codicon-find-replace-all:before {
2382 | content: '\eb3c' !important
2383 | }
2384 |
2385 | .codicon-find-previous-match:before {
2386 | content: '\eaa1' !important
2387 | }
2388 |
2389 | .codicon-find-next-match:before {
2390 | content: '\ea9a' !important
2391 | }
2392 |
2393 | .codicon-folding-expanded:before {
2394 | content: '\eab4' !important
2395 | }
2396 |
2397 | .codicon-folding-collapsed:before {
2398 | content: '\eab6' !important
2399 | }
2400 |
2401 | .codicon-marker-navigation-next:before {
2402 | content: '\ea9a' !important
2403 | }
2404 |
2405 | .codicon-marker-navigation-previous:before {
2406 | content: '\eaa1' !important
2407 | }
2408 |
2409 | .monaco-scrollable-element>.shadow.top {
2410 | box-shadow: #000 0 6px 6px -6px inset
2411 | }
2412 |
2413 | .monaco-scrollable-element>.shadow.left {
2414 | box-shadow: #000 6px 0 6px -6px inset
2415 | }
2416 |
2417 | .monaco-scrollable-element>.shadow.top.left {
2418 | box-shadow: #000 6px 6px 6px -6px inset
2419 | }
2420 |
2421 | .monaco-scrollable-element>.scrollbar>.slider {
2422 | background: rgba(121, 121, 121, .4)
2423 | }
2424 |
2425 | .monaco-scrollable-element>.scrollbar>.slider:hover {
2426 | background: rgba(100, 100, 100, .7)
2427 | }
2428 |
2429 | .monaco-scrollable-element>.scrollbar>.slider.active {
2430 | background: rgba(191, 191, 191, .4)
2431 | }
2432 |
2433 | .monaco-editor .view-overlays .current-line {
2434 | background-color: rgba(255, 255, 255, .2) !important
2435 | }
2436 |
2437 | .monaco-editor .margin-view-overlays .current-line-margin {
2438 | background-color: rgba(255, 255, 255, .2);
2439 | border: none !important
2440 | }
2441 |
2442 | .monaco-editor .minimap-slider .minimap-slider-horizontal {
2443 | background: rgba(121, 121, 121, .2) !important
2444 | }
2445 |
2446 | .monaco-editor .minimap-slider:hover .minimap-slider-horizontal {
2447 | background: rgba(100, 100, 100, .35) !important
2448 | }
2449 |
2450 | .monaco-editor .minimap-slider.active .minimap-slider-horizontal {
2451 | background: rgba(191, 191, 191, .2) !important
2452 | }
2453 |
2454 | .monaco-editor .minimap-shadow-visible {
2455 | box-shadow: #000 -6px 0 6px -6px inset !important
2456 | }
2457 |
2458 | .monaco-editor .scroll-decoration {
2459 | box-shadow: #000 0 6px 6px -6px inset !important
2460 | }
2461 |
2462 | .monaco-editor .focused .selected-text {
2463 | background-color: #264f78 !important
2464 | }
2465 |
2466 | .monaco-editor .selected-text {
2467 | background-color: #3a3d41 !important
2468 | }
2469 |
2470 | .monaco-editor,
2471 | .monaco-editor .inputarea.ime-input,
2472 | .monaco-editor-background {
2473 | background-color: #1e1e1e !important
2474 | }
2475 |
2476 | .monaco-editor,
2477 | .monaco-editor .inputarea.ime-input {
2478 | color: #d4d4d4 !important
2479 | }
2480 |
2481 | .monaco-editor .margin {
2482 | background-color: #1e1e1e !important
2483 | }
2484 |
2485 | .monaco-editor .rangeHighlight {
2486 | background-color: rgba(255, 255, 255, .04) !important
2487 | }
2488 |
2489 | .monaco-editor .symbolHighlight {
2490 | background-color: rgba(234, 92, 0, .33) !important
2491 | }
2492 |
2493 | .monaco-editor .mtkw {
2494 | color: rgba(227, 228, 226, .16) !important
2495 | }
2496 |
2497 | .monaco-editor .mtkz {
2498 | color: rgba(227, 228, 226, .16) !important
2499 | }
2500 |
2501 | .monaco-editor .view-overlays .current-line {
2502 | border: 2px solid #282828 !important
2503 | }
2504 |
2505 | .monaco-editor .margin-view-overlays .current-line-margin {
2506 | border: 2px solid #282828 !important
2507 | }
2508 |
2509 | .monaco-editor .line-numbers {
2510 | color: #858585 !important
2511 | }
2512 |
2513 | .monaco-editor .line-numbers.active-line-number {
2514 | color: #c6c6c6 !important
2515 | }
2516 |
2517 | .monaco-editor .view-ruler {
2518 | box-shadow: 1px 0 0 0 #5a5a5a inset !important
2519 | }
2520 |
2521 | .monaco-editor .cursors-layer .cursor {
2522 | background-color: #aeafad;
2523 | border-color: #aeafad;
2524 | color: #515052 !important
2525 | }
2526 |
2527 | .monaco-editor .unexpected-closing-bracket {
2528 | color: rgba(255, 18, 18, .8) !important
2529 | }
2530 |
2531 | .monaco-editor .bracket-highlighting-0 {
2532 | color: gold !important
2533 | }
2534 |
2535 | .monaco-editor .bracket-highlighting-1 {
2536 | color: orchid !important
2537 | }
2538 |
2539 | .monaco-editor .bracket-highlighting-2 {
2540 | color: #179fff !important
2541 | }
2542 |
2543 | .monaco-editor .bracket-highlighting-3 {
2544 | color: gold !important
2545 | }
2546 |
2547 | .monaco-editor .bracket-highlighting-4 {
2548 | color: orchid !important
2549 | }
2550 |
2551 | .monaco-editor .bracket-highlighting-5 {
2552 | color: #179fff !important
2553 | }
2554 |
2555 | .monaco-editor .bracket-highlighting-6 {
2556 | color: gold !important
2557 | }
2558 |
2559 | .monaco-editor .bracket-highlighting-7 {
2560 | color: orchid !important
2561 | }
2562 |
2563 | .monaco-editor .bracket-highlighting-8 {
2564 | color: #179fff !important
2565 | }
2566 |
2567 | .monaco-editor .bracket-highlighting-9 {
2568 | color: gold !important
2569 | }
2570 |
2571 | .monaco-editor .bracket-highlighting-10 {
2572 | color: orchid !important
2573 | }
2574 |
2575 | .monaco-editor .bracket-highlighting-11 {
2576 | color: #179fff !important
2577 | }
2578 |
2579 | .monaco-editor .bracket-highlighting-12 {
2580 | color: gold !important
2581 | }
2582 |
2583 | .monaco-editor .bracket-highlighting-13 {
2584 | color: orchid !important
2585 | }
2586 |
2587 | .monaco-editor .bracket-highlighting-14 {
2588 | color: #179fff !important
2589 | }
2590 |
2591 | .monaco-editor .bracket-highlighting-15 {
2592 | color: gold !important
2593 | }
2594 |
2595 | .monaco-editor .bracket-highlighting-16 {
2596 | color: orchid !important
2597 | }
2598 |
2599 | .monaco-editor .bracket-highlighting-17 {
2600 | color: #179fff !important
2601 | }
2602 |
2603 | .monaco-editor .bracket-highlighting-18 {
2604 | color: gold !important
2605 | }
2606 |
2607 | .monaco-editor .bracket-highlighting-19 {
2608 | color: orchid !important
2609 | }
2610 |
2611 | .monaco-editor .bracket-highlighting-20 {
2612 | color: #179fff !important
2613 | }
2614 |
2615 | .monaco-editor .bracket-highlighting-21 {
2616 | color: gold !important
2617 | }
2618 |
2619 | .monaco-editor .bracket-highlighting-22 {
2620 | color: orchid !important
2621 | }
2622 |
2623 | .monaco-editor .bracket-highlighting-23 {
2624 | color: #179fff !important
2625 | }
2626 |
2627 | .monaco-editor .bracket-highlighting-24 {
2628 | color: gold !important
2629 | }
2630 |
2631 | .monaco-editor .bracket-highlighting-25 {
2632 | color: orchid !important
2633 | }
2634 |
2635 | .monaco-editor .bracket-highlighting-26 {
2636 | color: #179fff !important
2637 | }
2638 |
2639 | .monaco-editor .bracket-highlighting-27 {
2640 | color: gold !important
2641 | }
2642 |
2643 | .monaco-editor .bracket-highlighting-28 {
2644 | color: orchid !important
2645 | }
2646 |
2647 | .monaco-editor .bracket-highlighting-29 {
2648 | color: #179fff !important
2649 | }
2650 |
2651 | .codicon.codicon-symbol-array {
2652 | color: #ccc !important
2653 | }
2654 |
2655 | .codicon.codicon-symbol-boolean {
2656 | color: #ccc !important
2657 | }
2658 |
2659 | .codicon.codicon-symbol-class {
2660 | color: #ee9d28 !important
2661 | }
2662 |
2663 | .codicon.codicon-symbol-method {
2664 | color: #b180d7 !important
2665 | }
2666 |
2667 | .codicon.codicon-symbol-color {
2668 | color: #ccc !important
2669 | }
2670 |
2671 | .codicon.codicon-symbol-constant {
2672 | color: #ccc !important
2673 | }
2674 |
2675 | .codicon.codicon-symbol-constructor {
2676 | color: #b180d7 !important
2677 | }
2678 |
2679 | .codicon.codicon-symbol-enum,
2680 | .codicon.codicon-symbol-value {
2681 | color: #ee9d28 !important
2682 | }
2683 |
2684 | .codicon.codicon-symbol-enum-member {
2685 | color: #75beff !important
2686 | }
2687 |
2688 | .codicon.codicon-symbol-event {
2689 | color: #ee9d28 !important
2690 | }
2691 |
2692 | .codicon.codicon-symbol-field {
2693 | color: #75beff !important
2694 | }
2695 |
2696 | .codicon.codicon-symbol-file {
2697 | color: #ccc !important
2698 | }
2699 |
2700 | .codicon.codicon-symbol-folder {
2701 | color: #ccc !important
2702 | }
2703 |
2704 | .codicon.codicon-symbol-function {
2705 | color: #b180d7 !important
2706 | }
2707 |
2708 | .codicon.codicon-symbol-interface {
2709 | color: #75beff !important
2710 | }
2711 |
2712 | .codicon.codicon-symbol-key {
2713 | color: #ccc !important
2714 | }
2715 |
2716 | .codicon.codicon-symbol-keyword {
2717 | color: #ccc !important
2718 | }
2719 |
2720 | .codicon.codicon-symbol-module {
2721 | color: #ccc !important
2722 | }
2723 |
2724 | .codicon.codicon-symbol-namespace {
2725 | color: #ccc !important
2726 | }
2727 |
2728 | .codicon.codicon-symbol-null {
2729 | color: #ccc !important
2730 | }
2731 |
2732 | .codicon.codicon-symbol-number {
2733 | color: #ccc !important
2734 | }
2735 |
2736 | .codicon.codicon-symbol-object {
2737 | color: #ccc !important
2738 | }
2739 |
2740 | .codicon.codicon-symbol-operator {
2741 | color: #ccc !important
2742 | }
2743 |
2744 | .codicon.codicon-symbol-package {
2745 | color: #ccc !important
2746 | }
2747 |
2748 | .codicon.codicon-symbol-property {
2749 | color: #ccc !important
2750 | }
2751 |
2752 | .codicon.codicon-symbol-reference {
2753 | color: #ccc !important
2754 | }
2755 |
2756 | .codicon.codicon-symbol-snippet {
2757 | color: #ccc !important
2758 | }
2759 |
2760 | .codicon.codicon-symbol-string {
2761 | color: #ccc !important
2762 | }
2763 |
2764 | .codicon.codicon-symbol-struct {
2765 | color: #ccc !important
2766 | }
2767 |
2768 | .codicon.codicon-symbol-text {
2769 | color: #ccc !important
2770 | }
2771 |
2772 | .codicon.codicon-symbol-type-parameter {
2773 | color: #ccc !important
2774 | }
2775 |
2776 | .codicon.codicon-symbol-unit {
2777 | color: #ccc !important
2778 | }
2779 |
2780 | .codicon.codicon-symbol-variable {
2781 | color: #75beff !important
2782 | }
2783 |
2784 | .monaco-editor .monaco-editor-overlaymessage .anchor.below {
2785 | border-top-color: #007acc !important
2786 | }
2787 |
2788 | .monaco-editor .monaco-editor-overlaymessage .anchor.top {
2789 | border-bottom-color: #007acc !important
2790 | }
2791 |
2792 | .monaco-editor .monaco-editor-overlaymessage .message {
2793 | border: 1px solid #007acc !important
2794 | }
2795 |
2796 | .monaco-editor .monaco-editor-overlaymessage .message {
2797 | background-color: #063b49 !important
2798 | }
2799 |
2800 | .monaco-editor .accessibilityHelpWidget {
2801 | background-color: #252526 !important
2802 | }
2803 |
2804 | .monaco-editor .accessibilityHelpWidget {
2805 | color: #ccc !important
2806 | }
2807 |
2808 | .monaco-editor .accessibilityHelpWidget {
2809 | box-shadow: 0 2px 8px rgba(0, 0, 0, .36) !important
2810 | }
2811 |
2812 | .monaco-editor .tokens-inspect-widget {
2813 | border: 1px solid #454545 !important
2814 | }
2815 |
2816 | .monaco-editor .tokens-inspect-widget .tokens-inspect-separator {
2817 | background-color: #454545 !important
2818 | }
2819 |
2820 | .monaco-editor .tokens-inspect-widget {
2821 | background-color: #252526 !important
2822 | }
2823 |
2824 | .monaco-editor .tokens-inspect-widget {
2825 | color: #ccc !important
2826 | }
2827 |
2828 | .extensions-viewlet>.extensions .codicon.codicon-error,
2829 | .markers-panel .marker-icon.codicon.codicon-error,
2830 | .monaco-editor .zone-widget .codicon.codicon-error,
2831 | .text-search-provider-messages .providerMessage .codicon.codicon-error {
2832 | color: #f14c4c
2833 | }
2834 |
2835 | .extension-editor .codicon.codicon-warning,
2836 | .extensions-viewlet>.extensions .codicon.codicon-warning,
2837 | .markers-panel .marker-icon.codicon.codicon-warning,
2838 | .monaco-editor .zone-widget .codicon.codicon-warning,
2839 | .preferences-editor .codicon.codicon-warning,
2840 | .text-search-provider-messages .providerMessage .codicon.codicon-warning {
2841 | color: #cca700
2842 | }
2843 |
2844 | .extension-editor .codicon.codicon-info,
2845 | .extensions-viewlet>.extensions .codicon.codicon-info,
2846 | .markers-panel .marker-icon.codicon.codicon-info,
2847 | .monaco-editor .zone-widget .codicon.codicon-info,
2848 | .text-search-provider-messages .providerMessage .codicon.codicon-info {
2849 | color: #3794ff
2850 | }
2851 |
2852 | .monaco-diff-editor .diff-review-line-number {
2853 | color: #858585 !important
2854 | }
2855 |
2856 | .monaco-diff-editor .diff-review-shadow {
2857 | box-shadow: #000 0 -6px 6px -6px inset !important
2858 | }
2859 |
2860 | .monaco-editor .parameter-hints-widget {
2861 | border: 1px solid #454545 !important
2862 | }
2863 |
2864 | .monaco-editor .parameter-hints-widget.multiple .body {
2865 | border-left: 1px solid rgba(69, 69, 69, .5) !important
2866 | }
2867 |
2868 | .monaco-editor .parameter-hints-widget .signature.has-docs {
2869 | border-bottom: 1px solid rgba(69, 69, 69, .5) !important
2870 | }
2871 |
2872 | .monaco-editor .parameter-hints-widget {
2873 | background-color: #252526 !important
2874 | }
2875 |
2876 | .monaco-editor .parameter-hints-widget a {
2877 | color: #3794ff !important
2878 | }
2879 |
2880 | .monaco-editor .parameter-hints-widget a:hover {
2881 | color: #3794ff !important
2882 | }
2883 |
2884 | .monaco-editor .parameter-hints-widget {
2885 | color: #ccc !important
2886 | }
2887 |
2888 | .monaco-editor .parameter-hints-widget code {
2889 | background-color: rgba(10, 10, 10, .4) !important
2890 | }
2891 |
2892 | .monaco-editor .parameter-hints-widget .parameter.active {
2893 | color: #18a3ff
2894 | }
2895 |
2896 | .monaco-editor .lines-content .core-guide-indent {
2897 | box-shadow: 1px 0 0 0 #404040 inset !important
2898 | }
2899 |
2900 | .monaco-editor .lines-content .core-guide-indent-active {
2901 | box-shadow: 1px 0 0 0 #707070 inset !important
2902 | }
2903 |
2904 | .monaco-editor .bracket-indent-guide.lvl-0 {
2905 | --guide-color: rgba(255, 215, 0, 0.3);
2906 | --guide-color-active: #ffd700 !important
2907 | }
2908 |
2909 | .monaco-editor .bracket-indent-guide.lvl-1 {
2910 | --guide-color: rgba(218, 112, 214, 0.3);
2911 | --guide-color-active: #da70d6 !important
2912 | }
2913 |
2914 | .monaco-editor .bracket-indent-guide.lvl-2 {
2915 | --guide-color: rgba(23, 159, 255, 0.3);
2916 | --guide-color-active: #179fff !important
2917 | }
2918 |
2919 | .monaco-editor .bracket-indent-guide.lvl-3 {
2920 | --guide-color: rgba(255, 215, 0, 0.3);
2921 | --guide-color-active: #ffd700 !important
2922 | }
2923 |
2924 | .monaco-editor .bracket-indent-guide.lvl-4 {
2925 | --guide-color: rgba(218, 112, 214, 0.3);
2926 | --guide-color-active: #da70d6 !important
2927 | }
2928 |
2929 | .monaco-editor .bracket-indent-guide.lvl-5 {
2930 | --guide-color: rgba(23, 159, 255, 0.3);
2931 | --guide-color-active: #179fff !important
2932 | }
2933 |
2934 | .monaco-editor .bracket-indent-guide.lvl-6 {
2935 | --guide-color: rgba(255, 215, 0, 0.3);
2936 | --guide-color-active: #ffd700 !important
2937 | }
2938 |
2939 | .monaco-editor .bracket-indent-guide.lvl-7 {
2940 | --guide-color: rgba(218, 112, 214, 0.3);
2941 | --guide-color-active: #da70d6 !important
2942 | }
2943 |
2944 | .monaco-editor .bracket-indent-guide.lvl-8 {
2945 | --guide-color: rgba(23, 159, 255, 0.3);
2946 | --guide-color-active: #179fff !important
2947 | }
2948 |
2949 | .monaco-editor .bracket-indent-guide.lvl-9 {
2950 | --guide-color: rgba(255, 215, 0, 0.3);
2951 | --guide-color-active: #ffd700 !important
2952 | }
2953 |
2954 | .monaco-editor .bracket-indent-guide.lvl-10 {
2955 | --guide-color: rgba(218, 112, 214, 0.3);
2956 | --guide-color-active: #da70d6 !important
2957 | }
2958 |
2959 | .monaco-editor .bracket-indent-guide.lvl-11 {
2960 | --guide-color: rgba(23, 159, 255, 0.3);
2961 | --guide-color-active: #179fff !important
2962 | }
2963 |
2964 | .monaco-editor .bracket-indent-guide.lvl-12 {
2965 | --guide-color: rgba(255, 215, 0, 0.3);
2966 | --guide-color-active: #ffd700 !important
2967 | }
2968 |
2969 | .monaco-editor .bracket-indent-guide.lvl-13 {
2970 | --guide-color: rgba(218, 112, 214, 0.3);
2971 | --guide-color-active: #da70d6 !important
2972 | }
2973 |
2974 | .monaco-editor .bracket-indent-guide.lvl-14 {
2975 | --guide-color: rgba(23, 159, 255, 0.3);
2976 | --guide-color-active: #179fff !important
2977 | }
2978 |
2979 | .monaco-editor .bracket-indent-guide.lvl-15 {
2980 | --guide-color: rgba(255, 215, 0, 0.3);
2981 | --guide-color-active: #ffd700 !important
2982 | }
2983 |
2984 | .monaco-editor .bracket-indent-guide.lvl-16 {
2985 | --guide-color: rgba(218, 112, 214, 0.3);
2986 | --guide-color-active: #da70d6 !important
2987 | }
2988 |
2989 | .monaco-editor .bracket-indent-guide.lvl-17 {
2990 | --guide-color: rgba(23, 159, 255, 0.3);
2991 | --guide-color-active: #179fff !important
2992 | }
2993 |
2994 | .monaco-editor .bracket-indent-guide.lvl-18 {
2995 | --guide-color: rgba(255, 215, 0, 0.3);
2996 | --guide-color-active: #ffd700 !important
2997 | }
2998 |
2999 | .monaco-editor .bracket-indent-guide.lvl-19 {
3000 | --guide-color: rgba(218, 112, 214, 0.3);
3001 | --guide-color-active: #da70d6 !important
3002 | }
3003 |
3004 | .monaco-editor .bracket-indent-guide.lvl-20 {
3005 | --guide-color: rgba(23, 159, 255, 0.3);
3006 | --guide-color-active: #179fff !important
3007 | }
3008 |
3009 | .monaco-editor .bracket-indent-guide.lvl-21 {
3010 | --guide-color: rgba(255, 215, 0, 0.3);
3011 | --guide-color-active: #ffd700 !important
3012 | }
3013 |
3014 | .monaco-editor .bracket-indent-guide.lvl-22 {
3015 | --guide-color: rgba(218, 112, 214, 0.3);
3016 | --guide-color-active: #da70d6 !important
3017 | }
3018 |
3019 | .monaco-editor .bracket-indent-guide.lvl-23 {
3020 | --guide-color: rgba(23, 159, 255, 0.3);
3021 | --guide-color-active: #179fff !important
3022 | }
3023 |
3024 | .monaco-editor .bracket-indent-guide.lvl-24 {
3025 | --guide-color: rgba(255, 215, 0, 0.3);
3026 | --guide-color-active: #ffd700 !important
3027 | }
3028 |
3029 | .monaco-editor .bracket-indent-guide.lvl-25 {
3030 | --guide-color: rgba(218, 112, 214, 0.3);
3031 | --guide-color-active: #da70d6 !important
3032 | }
3033 |
3034 | .monaco-editor .bracket-indent-guide.lvl-26 {
3035 | --guide-color: rgba(23, 159, 255, 0.3);
3036 | --guide-color-active: #179fff !important
3037 | }
3038 |
3039 | .monaco-editor .bracket-indent-guide.lvl-27 {
3040 | --guide-color: rgba(255, 215, 0, 0.3);
3041 | --guide-color-active: #ffd700 !important
3042 | }
3043 |
3044 | .monaco-editor .bracket-indent-guide.lvl-28 {
3045 | --guide-color: rgba(218, 112, 214, 0.3);
3046 | --guide-color-active: #da70d6 !important
3047 | }
3048 |
3049 | .monaco-editor .bracket-indent-guide.lvl-29 {
3050 | --guide-color: rgba(23, 159, 255, 0.3);
3051 | --guide-color-active: #179fff !important
3052 | }
3053 |
3054 | .monaco-editor .vertical {
3055 | box-shadow: 1px 0 0 0 var(--guide-color) inset !important
3056 | }
3057 |
3058 | .monaco-editor .horizontal-top {
3059 | border-top: 1px solid var(--guide-color) !important
3060 | }
3061 |
3062 | .monaco-editor .horizontal-bottom {
3063 | border-bottom: 1px solid var(--guide-color) !important
3064 | }
3065 |
3066 | .monaco-editor .vertical.indent-active {
3067 | box-shadow: 1px 0 0 0 var(--guide-color-active) inset !important
3068 | }
3069 |
3070 | .monaco-editor .horizontal-top.indent-active {
3071 | border-top: 1px solid var(--guide-color-active) !important
3072 | }
3073 |
3074 | .monaco-editor .horizontal-bottom.indent-active {
3075 | border-bottom: 1px solid var(--guide-color-active) !important
3076 | }
3077 |
3078 | .monaco-editor .squiggly-error {
3079 | background: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%206%203'%20enable-background%3D'new%200%200%206%203'%20height%3D'3'%20width%3D'6'%3E%3Cg%20fill%3D'%23f14c4c'%3E%3Cpolygon%20points%3D'5.5%2C0%202.5%2C3%201.1%2C3%204.1%2C0'%2F%3E%3Cpolygon%20points%3D'4%2C0%206%2C2%206%2C0.6%205.4%2C0'%2F%3E%3Cpolygon%20points%3D'0%2C2%201%2C3%202.4%2C3%200%2C0.6'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") repeat-x bottom left !important
3080 | }
3081 |
3082 | .monaco-editor .squiggly-warning {
3083 | background: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%206%203'%20enable-background%3D'new%200%200%206%203'%20height%3D'3'%20width%3D'6'%3E%3Cg%20fill%3D'%23cca700'%3E%3Cpolygon%20points%3D'5.5%2C0%202.5%2C3%201.1%2C3%204.1%2C0'%2F%3E%3Cpolygon%20points%3D'4%2C0%206%2C2%206%2C0.6%205.4%2C0'%2F%3E%3Cpolygon%20points%3D'0%2C2%201%2C3%202.4%2C3%200%2C0.6'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") repeat-x bottom left !important
3084 | }
3085 |
3086 | .monaco-editor .squiggly-info {
3087 | background: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%206%203'%20enable-background%3D'new%200%200%206%203'%20height%3D'3'%20width%3D'6'%3E%3Cg%20fill%3D'%233794ff'%3E%3Cpolygon%20points%3D'5.5%2C0%202.5%2C3%201.1%2C3%204.1%2C0'%2F%3E%3Cpolygon%20points%3D'4%2C0%206%2C2%206%2C0.6%205.4%2C0'%2F%3E%3Cpolygon%20points%3D'0%2C2%201%2C3%202.4%2C3%200%2C0.6'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") repeat-x bottom left !important
3088 | }
3089 |
3090 | .monaco-editor .squiggly-hint {
3091 | background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%223%22%20width%3D%2212%22%3E%3Cg%20fill%3D%22rgba(238%2C%20238%2C%20238%2C%200.7)%22%3E%3Ccircle%20cx%3D%221%22%20cy%3D%221%22%20r%3D%221%22%2F%3E%3Ccircle%20cx%3D%225%22%20cy%3D%221%22%20r%3D%221%22%2F%3E%3Ccircle%20cx%3D%229%22%20cy%3D%221%22%20r%3D%221%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat bottom left !important
3092 | }
3093 |
3094 | .monaco-editor.showUnused .squiggly-inline-unnecessary {
3095 | opacity: .667 !important
3096 | }
3097 |
3098 | .monaco-editor.showDeprecated .squiggly-inline-deprecated {
3099 | text-decoration: line-through;
3100 | text-decoration-color: #d4d4d4
3101 | }
3102 |
3103 | .monaco-editor .char-insert,
3104 | .monaco-editor .line-insert {
3105 | background-color: rgba(155, 185, 85, .2) !important
3106 | }
3107 |
3108 | .monaco-diff-editor .char-insert,
3109 | .monaco-diff-editor .line-insert {
3110 | background-color: rgba(155, 185, 85, .2) !important
3111 | }
3112 |
3113 | .monaco-editor .inline-added-margin-view-zone {
3114 | background-color: rgba(155, 185, 85, .2) !important
3115 | }
3116 |
3117 | .monaco-editor .char-delete,
3118 | .monaco-editor .line-delete {
3119 | background-color: rgba(255, 0, 0, .2) !important
3120 | }
3121 |
3122 | .monaco-diff-editor .char-delete,
3123 | .monaco-diff-editor .line-delete {
3124 | background-color: rgba(255, 0, 0, .2) !important
3125 | }
3126 |
3127 | .monaco-editor .inline-deleted-margin-view-zone {
3128 | background-color: rgba(255, 0, 0, .2) !important
3129 | }
3130 |
3131 | .monaco-diff-editor.side-by-side .editor.modified {
3132 | box-shadow: -6px 0 5px -5px #000 !important
3133 | }
3134 |
3135 | .monaco-diff-editor .diffViewport {
3136 | background: rgba(121, 121, 121, .4)
3137 | }
3138 |
3139 | .monaco-diff-editor .diffViewport:hover {
3140 | background: rgba(100, 100, 100, .7)
3141 | }
3142 |
3143 | .monaco-diff-editor .diffViewport:active {
3144 | background: rgba(191, 191, 191, .4)
3145 | }
3146 |
3147 | .monaco-editor .diagonal-fill {
3148 | background-image: linear-gradient(-45deg, rgba(204, 204, 204, .2) 12.5%, #0000 12.5%, #0000 50%, rgba(204, 204, 204, .2) 50%, rgba(204, 204, 204, .2) 62.5%, #0000 62.5%, #0000 100%);
3149 | background-size: 8px 8px
3150 | }
3151 |
3152 | .monaco-editor .bracket-match {
3153 | background-color: rgba(0, 100, 0, .1) !important
3154 | }
3155 |
3156 | .monaco-editor .bracket-match {
3157 | border: 1px solid #888 !important
3158 | }
3159 |
3160 | .monaco-editor .contentWidgets .codicon.codicon-light-bulb {
3161 | color: #fc0;
3162 | background-color: rgba(30, 30, 30, .7)
3163 | }
3164 |
3165 | .monaco-editor .contentWidgets .codicon.codicon-lightbulb-autofix {
3166 | color: #75beff;
3167 | background-color: rgba(30, 30, 30, .7)
3168 | }
3169 |
3170 | .monaco-editor .codelens-decoration {
3171 | color: #999 !important
3172 | }
3173 |
3174 | .monaco-editor .codelens-decoration .codicon {
3175 | color: #999 !important
3176 | }
3177 |
3178 | .monaco-editor .codelens-decoration>a:hover {
3179 | color: #4e94ce !important
3180 | }
3181 |
3182 | .monaco-editor .codelens-decoration>a:hover .codicon {
3183 | color: #4e94ce !important
3184 | }
3185 |
3186 | .monaco-editor .findOptionsWidget {
3187 | background-color: #252526 !important
3188 | }
3189 |
3190 | .monaco-editor .findOptionsWidget {
3191 | color: #ccc !important
3192 | }
3193 |
3194 | .monaco-editor .findOptionsWidget {
3195 | box-shadow: 0 0 8px 2px rgba(0, 0, 0, .36) !important
3196 | }
3197 |
3198 | .monaco-editor .findMatch {
3199 | background-color: rgba(234, 92, 0, .33) !important
3200 | }
3201 |
3202 | .monaco-editor .currentFindMatch {
3203 | background-color: #515c6a !important
3204 | }
3205 |
3206 | .monaco-editor .findScope {
3207 | background-color: rgba(58, 61, 65, .4) !important
3208 | }
3209 |
3210 | .monaco-editor .find-widget {
3211 | background-color: #252526 !important
3212 | }
3213 |
3214 | .monaco-editor .find-widget {
3215 | box-shadow: 0 0 8px 2px rgba(0, 0, 0, .36) !important
3216 | }
3217 |
3218 | .monaco-editor .find-widget {
3219 | color: #ccc !important
3220 | }
3221 |
3222 | .monaco-editor .find-widget.no-results .matchesCount {
3223 | color: #f48771 !important
3224 | }
3225 |
3226 | .monaco-editor .find-widget .monaco-sash {
3227 | background-color: #454545 !important
3228 | }
3229 |
3230 | .monaco-editor .find-widget .button:not(.disabled):hover,
3231 | .monaco-editor .find-widget .codicon-find-selection:hover {
3232 | background-color: rgba(90, 93, 94, .31) !important
3233 | }
3234 |
3235 | .monaco-editor .find-widget .monaco-inputbox.synthetic-focus {
3236 | outline-color: #007fd4 !important
3237 | }
3238 |
3239 | .monaco-editor .folded-background {
3240 | background-color: rgba(38, 79, 120, .3) !important
3241 | }
3242 |
3243 | .monaco-editor .cldr.codicon.codicon-folding-collapsed,
3244 | .monaco-editor .cldr.codicon.codicon-folding-expanded {
3245 | color: #c5c5c5 !important
3246 | }
3247 |
3248 | .monaco-editor.vs .valueSetReplacement {
3249 | outline: solid 2px #888888 !important
3250 | }
3251 |
3252 | .monaco-editor .ghost-text-decoration {
3253 | opacity: .337 !important;
3254 | color: #fff !important
3255 | }
3256 |
3257 | .monaco-editor .ghost-text-decoration-preview {
3258 | color: rgba(255, 255, 255, .34) !important
3259 | }
3260 |
3261 | .monaco-editor .suggest-preview-text .ghost-text {
3262 | opacity: .337 !important;
3263 | color: #fff !important
3264 | }
3265 |
3266 | .monaco-editor .linked-editing-decoration {
3267 | background: rgba(255, 0, 0, .3);
3268 | border-left-color: rgba(255, 0, 0, .3) !important
3269 | }
3270 |
3271 | .monaco-editor .detected-link-active {
3272 | color: #4e94ce !important
3273 | }
3274 |
3275 | .monaco-editor .suggest-widget .monaco-list .monaco-list-row .monaco-highlighted-label .highlight {
3276 | color: #18a3ff !important
3277 | }
3278 |
3279 | .monaco-editor .suggest-widget .monaco-list .monaco-list-row.focused .monaco-highlighted-label .highlight {
3280 | color: #18a3ff !important
3281 | }
3282 |
3283 | .monaco-editor .suggest-details,
3284 | .monaco-editor .suggest-widget {
3285 | color: #d4d4d4 !important
3286 | }
3287 |
3288 | .monaco-editor .suggest-widget .monaco-list .monaco-list-row.focused {
3289 | color: #fff !important
3290 | }
3291 |
3292 | .monaco-editor .suggest-details a {
3293 | color: #3794ff !important
3294 | }
3295 |
3296 | .monaco-editor .suggest-details a:hover {
3297 | color: #3794ff !important
3298 | }
3299 |
3300 | .monaco-editor .suggest-details code {
3301 | background-color: rgba(10, 10, 10, .4) !important
3302 | }
3303 |
3304 | .monaco-editor .focused .selectionHighlight {
3305 | background-color: rgba(173, 214, 255, .15) !important
3306 | }
3307 |
3308 | .monaco-editor .selectionHighlight {
3309 | background-color: rgba(173, 214, 255, .07) !important
3310 | }
3311 |
3312 | .monaco-editor .wordHighlight {
3313 | background-color: rgba(87, 87, 87, .72) !important
3314 | }
3315 |
3316 | .monaco-editor .wordHighlightStrong {
3317 | background-color: rgba(0, 73, 114, .72) !important
3318 | }
3319 |
3320 | .monaco-editor .marker-widget a.code-link span {
3321 | color: #3794ff !important
3322 | }
3323 |
3324 | .monaco-editor .marker-widget a.code-link span:hover {
3325 | color: #3794ff !important
3326 | }
3327 |
3328 | .monaco-editor .reference-zone-widget .ref-tree .referenceMatch .highlight {
3329 | background-color: rgba(234, 92, 0, .3) !important
3330 | }
3331 |
3332 | .monaco-editor .reference-zone-widget .preview .reference-decoration {
3333 | background-color: rgba(255, 143, 0, .6) !important
3334 | }
3335 |
3336 | .monaco-editor .reference-zone-widget .ref-tree {
3337 | background-color: #252526 !important
3338 | }
3339 |
3340 | .monaco-editor .reference-zone-widget .ref-tree {
3341 | color: #bbb !important
3342 | }
3343 |
3344 | .monaco-editor .reference-zone-widget .ref-tree .reference-file {
3345 | color: #fff !important
3346 | }
3347 |
3348 | .monaco-editor .reference-zone-widget .ref-tree .monaco-list:focus .monaco-list-rows>.monaco-list-row.selected:not(.highlighted) {
3349 | background-color: rgba(51, 153, 255, .2) !important
3350 | }
3351 |
3352 | .monaco-editor .reference-zone-widget .ref-tree .monaco-list:focus .monaco-list-rows>.monaco-list-row.selected:not(.highlighted) {
3353 | color: #fff !important
3354 | }
3355 |
3356 | .monaco-editor .reference-zone-widget .preview .monaco-editor .inputarea.ime-input,
3357 | .monaco-editor .reference-zone-widget .preview .monaco-editor .monaco-editor-background {
3358 | background-color: #001f33
3359 | }
3360 |
3361 | .monaco-editor .reference-zone-widget .preview .monaco-editor .margin {
3362 | background-color: #001f33
3363 | }
3364 |
3365 | .monaco-editor .goto-definition-link {
3366 | color: #4e94ce !important
3367 | }
3368 |
3369 | .monaco-hover .hover-contents a.code-link span {
3370 | color: #3794ff !important
3371 | }
3372 |
3373 | .monaco-hover .hover-contents a.code-link span:hover {
3374 | color: #3794ff !important
3375 | }
3376 |
3377 | .monaco-editor .snippet-placeholder {
3378 | background-color: rgba(124, 124, 124, .3);
3379 | outline-color: transparent !important
3380 | }
3381 |
3382 | .monaco-editor .finish-snippet-placeholder {
3383 | background-color: transparent;
3384 | outline-color: #525252 !important
3385 | }
3386 |
3387 | .monaco-editor .hoverHighlight {
3388 | background-color: rgba(38, 79, 120, .25) !important
3389 | }
3390 |
3391 | .monaco-editor .monaco-hover {
3392 | background-color: #252526 !important
3393 | }
3394 |
3395 | .monaco-editor .monaco-hover {
3396 | border: 1px solid #454545 !important
3397 | }
3398 |
3399 | .monaco-editor .monaco-hover .hover-row:not(:first-child):not(:empty) {
3400 | border-top: 1px solid rgba(69, 69, 69, .5) !important
3401 | }
3402 |
3403 | .monaco-editor .monaco-hover hr {
3404 | border-top: 1px solid rgba(69, 69, 69, .5) !important
3405 | }
3406 |
3407 | .monaco-editor .monaco-hover hr {
3408 | border-bottom: 0 solid rgba(69, 69, 69, .5) !important
3409 | }
3410 |
3411 | .monaco-editor .monaco-hover a {
3412 | color: #3794ff !important
3413 | }
3414 |
3415 | .monaco-editor .monaco-hover a:hover {
3416 | color: #3794ff !important
3417 | }
3418 |
3419 | .monaco-editor .monaco-hover {
3420 | color: #ccc !important
3421 | }
3422 |
3423 | .monaco-editor .monaco-hover .hover-row .actions {
3424 | background-color: #2c2c2d !important
3425 | }
3426 |
3427 | .monaco-editor .monaco-hover code {
3428 | background-color: rgba(10, 10, 10, .4) !important
3429 | }
3430 |
3431 | .mtk1 {
3432 | color: #d4d4d4 !important
3433 | }
3434 |
3435 | .mtk2 {
3436 | color: #1e1e1e !important
3437 | }
3438 |
3439 | .mtk3 {
3440 | color: #c66 !important
3441 | }
3442 |
3443 | .mtk4 {
3444 | color: #9cdcfe !important
3445 | }
3446 |
3447 | .mtk5 {
3448 | color: #ce9178 !important
3449 | }
3450 |
3451 | .mtk6 {
3452 | color: #b5cea8 !important
3453 | }
3454 |
3455 | .mtk7 {
3456 | color: #608b4e !important
3457 | }
3458 |
3459 | .mtk8 {
3460 | color: #569cd6 !important
3461 | }
3462 |
3463 | .mtk9 {
3464 | color: #dcdcdc !important
3465 | }
3466 |
3467 | .mtk10 {
3468 | color: grey !important
3469 | }
3470 |
3471 | .mtk11 {
3472 | color: #f44747 !important
3473 | }
3474 |
3475 | .mtk12 {
3476 | color: #c586c0 !important
3477 | }
3478 |
3479 | .mtk13 {
3480 | color: #a79873 !important
3481 | }
3482 |
3483 | .mtk14 {
3484 | color: #dd6a6f !important
3485 | }
3486 |
3487 | .mtk15 {
3488 | color: #5bb498 !important
3489 | }
3490 |
3491 | .mtk16 {
3492 | color: #909090 !important
3493 | }
3494 |
3495 | .mtk17 {
3496 | color: #789 !important
3497 | }
3498 |
3499 | .mtk18 {
3500 | color: #f0f !important
3501 | }
3502 |
3503 | .mtk19 {
3504 | color: #b46695 !important
3505 | }
3506 |
3507 | .mtk20 {
3508 | color: red !important
3509 | }
3510 |
3511 | .mtk21 {
3512 | color: #4f76ac !important
3513 | }
3514 |
3515 | .mtk22 {
3516 | color: #3dc9b0 !important
3517 | }
3518 |
3519 | .mtk23 {
3520 | color: #74b0df !important
3521 | }
3522 |
3523 | .mtk24 {
3524 | color: #4864aa !important
3525 | }
3526 |
3527 | .mtki {
3528 | font-style: italic !important
3529 | }
3530 |
3531 | .mtkb {
3532 | font-weight: 700 !important
3533 | }
3534 |
3535 | .mtku {
3536 | text-decoration: underline;
3537 | text-underline-position: under !important
3538 | }
3539 |
3540 | ::-webkit-input-placeholder {
3541 | color: var(--text-muted) !important
3542 | }
3543 |
3544 | :focus::-webkit-input-placeholder {
3545 | color: var(--text-hover) !important
3546 | }
3547 |
3548 | :-moz-placeholder {
3549 | color: var(--text-muted) !important
3550 | }
3551 |
3552 | :focus:-moz-placeholder {
3553 | color: var(--text-hover) !important
3554 | }
3555 |
3556 | ::-moz-placeholder {
3557 | color: var(--text-muted) !important
3558 | }
3559 |
3560 | :focus::-moz-placeholder {
3561 | color: var(--text-hover) !important
3562 | }
3563 |
3564 | :-ms-input-placeholder {
3565 | color: var(--text-muted) !important
3566 | }
3567 |
3568 | :focus:-ms-input-placeholder {
3569 | color: var(--text-hover) !important
3570 | }
3571 |
3572 | :root {
3573 | --transparency-dark-05: rgba(0, 0, 0, .05);
3574 | --transparency-dark-10: rgba(0, 0, 0, .10);
3575 | --transparency-dark-15: rgba(0, 0, 0, .15);
3576 | --transparency-dark-25: rgba(0, 0, 0, .25);
3577 | --transparency-dark-35: rgba(0, 0, 0, .35);
3578 | --transparency-dark-40: rgba(0, 0, 0, .40);
3579 | --transparency-dark-45: rgba(0, 0, 0, .45);
3580 | --transparency-dark-50: rgba(0, 0, 0, .50);
3581 | --transparency-dark-55: rgba(0, 0, 0, .55);
3582 | --transparency-dark-60: rgba(0, 0, 0, .60);
3583 | --transparency-dark-65: rgba(0, 0, 0, .65);
3584 | --transparency-dark-70: rgba(0, 0, 0, .70);
3585 | --transparency-dark-75: rgba(0, 0, 0, .75);
3586 | --transparency-dark-80: rgba(0, 0, 0, .80);
3587 | --transparency-dark-85: rgba(0, 0, 0, .85);
3588 | --transparency-dark-90: rgba(0, 0, 0, .90);
3589 | --transparency-light-05: rgba(255, 255, 255, .05);
3590 | --transparency-light-10: rgba(255, 255, 255, .10);
3591 | --transparency-light-15: rgba(255, 255, 255, .15);
3592 | --transparency-light-20: rgba(255, 255, 255, .20);
3593 | --transparency-light-25: rgba(255, 255, 255, .25);
3594 | --transparency-light-30: rgba(255, 255, 255, .30);
3595 | --transparency-light-35: rgba(255, 255, 255, .35);
3596 | --transparency-light-45: rgba(255, 255, 255, .45);
3597 | --transparency-light-50: rgba(255, 255, 255, .50);
3598 | --transparency-light-55: rgba(255, 255, 255, .55);
3599 | --transparency-light-95: rgba(255, 255, 255, .95)
3600 | }
3601 |
3602 | :root {
3603 | --color-text: var(--text);
3604 | --color-caret: white;
3605 | --color-secondary-alpha-70: rgba(0, 0, 0, 0.35);
3606 | --color-primary-light-4: rgb(var(--gitea-color-primary-dark-4), .2);
3607 | --color-primary-light-2: rgb(var(--gitea-color-primary-dark-4), .4);
3608 | --color-primary: rgb(var(--gitea-color-primary-dark-4), .6);
3609 | --color-primary-dark-2: rgb(var(--gitea-color-primary-dark-4), .8);
3610 | --color-primary-dark-4: rgb(var(--gitea-color-primary-dark-4));
3611 | --color-nav-bg: var(--main-bg-color);
3612 | --color-button: transparent;
3613 | --color-menu: transparent;
3614 | --color-footer: transparent
3615 | }
3616 |
3617 | body {
3618 | background: var(--main-bg-color);
3619 | background-repeat: repeat, no-repeat;
3620 | background-attachment: fixed, fixed;
3621 | background-position: center center, center center;
3622 | background-size: auto, cover;
3623 | -webkit-background-size: auto, cover;
3624 | -moz-background-size: auto, cover;
3625 | -o-background-size: auto, cover
3626 | }
3627 |
3628 | * {
3629 | outline: 0
3630 | }
3631 |
3632 | .home a,
3633 | .repository .labelspage .item a,
3634 | .repository .milestone.list>.item .operate>a,
3635 | .repository .milestone.list>.item>a,
3636 | .ui.breadcrumb a,
3637 | .ui.card>.content>.description,
3638 | .ui.card>.content>.header,
3639 | .ui.card>.content>a.header,
3640 | .ui.card>.extra a:not(.ui),
3641 | .ui.cards>.card>.content>.description,
3642 | .ui.cards>.card>.content>.header,
3643 | .ui.cards>.card>.content>a.header,
3644 | .ui.cards>.card>.extra a:not(.ui),
3645 | .ui.user.list .item .description a,
3646 | a {
3647 | color: var(--link-color)
3648 | }
3649 |
3650 | .repository .labelspage .item a:hover,
3651 | .repository .milestone.list>.item .operate>a:hover,
3652 | .repository .milestone.list>.item>a:hover,
3653 | .ui.breadcrumb a:hover,
3654 | .ui.card>.content>a.header:hover,
3655 | .ui.card>.extra a:not(.ui):hover,
3656 | .ui.cards>.card>.content>a.header:hover,
3657 | .ui.cards>.card>.extra a:not(.ui):hover,
3658 | .ui.user.list .item .description a:hover,
3659 | a:hover {
3660 | color: var(--link-color-hover)
3661 | }
3662 |
3663 | .issue.list a:not(.label):hover,
3664 | .issue.list>.item .title:hover,
3665 | .ui .migrate a,
3666 | .ui .text.blue a,
3667 | .ui .text.grey a {
3668 | color: var(--link-color) !important
3669 | }
3670 |
3671 | .ui .migrate a:hover,
3672 | .ui .text.blue a:hover,
3673 | .ui .text.grey a:hover {
3674 | color: var(--link-color-hover) !important
3675 | }
3676 |
3677 | * {
3678 | scrollbar-color: rgb(var(--accent-color), .5) transparent;
3679 | caret-color: var(--color-caret)
3680 | }
3681 |
3682 | @media only screen and (min-width:768px) {
3683 | html {
3684 | height: 100%;
3685 | width: 100%;
3686 | overflow: hidden
3687 | }
3688 |
3689 | body {
3690 | overflow-y: auto;
3691 | height: 100%;
3692 | background: var(--main-bg-color);
3693 | background-repeat: repeat, no-repeat;
3694 | background-attachment: fixed, fixed;
3695 | background-position: center center, center center;
3696 | background-size: auto, cover;
3697 | -webkit-background-size: auto, cover;
3698 | -moz-background-size: auto, cover;
3699 | -o-background-size: auto, cover
3700 | }
3701 | }
3702 |
3703 | ::-webkit-scrollbar {
3704 | width: 14px
3705 | }
3706 |
3707 | ::-webkit-scrollbar-thumb {
3708 | min-height: 50px;
3709 | border: 3px solid transparent;
3710 | border-radius: 8px !important;
3711 | background: var(--transparency-dark-20);
3712 | background-clip: padding-box;
3713 | box-shadow: none !important
3714 | }
3715 |
3716 | ::-webkit-scrollbar-track {
3717 | background-color: transparent
3718 | }
3719 |
3720 | ::-webkit-scrollbar-thumb:hover {
3721 | min-height: 50px;
3722 | border: 3px solid transparent;
3723 | border-radius: 8px !important;
3724 | background: var(--transparency-light-50);
3725 | background-clip: padding-box
3726 | }
3727 |
3728 | .CodeMirror,
3729 | .EasyMDEContainer .CodeMirror,
3730 | .feeds .list ul li a .svg,
3731 | .flex-item .flex-item-body,
3732 | .form .help,
3733 | .issue.list>.item .title,
3734 | .repository .diff-box .header .file,
3735 | .repository .metas .ui.list a .text,
3736 | .repository.view.issue .comment-list .comment .tag,
3737 | .ui .text.black,
3738 | .ui.accordion .title:not(.ui),
3739 | .ui.card>.content>.description,
3740 | .ui.cards>.card>.content>.description,
3741 | .ui.checkbox input[disabled]~label,
3742 | .ui.checkbox label,
3743 | .ui.disabled.checkbox label,
3744 | .ui.dropdown .menu>.header:not(.ui),
3745 | .ui.dropdown .menu>.message:not(.ui),
3746 | .ui.form .field>label,
3747 | .ui.form .inline.field>label,
3748 | .ui.form .inline.field>p,
3749 | .ui.form .inline.fields .field>label,
3750 | .ui.form .inline.fields .field>p,
3751 | .ui.form .inline.fields>label,
3752 | .ui.list .list>.item>.content,
3753 | .ui.list>.item .description,
3754 | .ui.list>.item>.content,
3755 | body,
3756 | footer,
3757 | p {
3758 | color: var(--text)
3759 | }
3760 |
3761 | .issue.list>.item .desc {
3762 | color: var(--text-muted)
3763 | }
3764 |
3765 | .ui.header,
3766 | .ui.header .sub.header,
3767 | h1,
3768 | h2,
3769 | h3,
3770 | h4,
3771 | h5,
3772 | h6 {
3773 | color: var(--text-hover)
3774 | }
3775 |
3776 | .ui .text.grey {
3777 | color: var(--text) !important
3778 | }
3779 |
3780 | .repository .metas .ui.list a .text:hover,
3781 | .ui .text.black:hover,
3782 | .ui.checkbox input:focus~label,
3783 | .ui.checkbox input:focus~label:after,
3784 | .ui.checkbox label:hover,
3785 | .ui.checkbox+label:hover,
3786 | b:hover {
3787 | color: var(--text-hover)
3788 | }
3789 |
3790 | .ui .text.light.grey {
3791 | color: var(--text-muted) !important
3792 | }
3793 |
3794 | #navbar {
3795 | border-bottom: 1px solid var(--transparency-light-35) !important
3796 | }
3797 |
3798 | #navbar a.item:hover,
3799 | #navbar button.item:hover {
3800 | background: rgba(var(--accent-color), .5)
3801 | }
3802 |
3803 | .following.bar.light {
3804 | background-color: transparent;
3805 | border-bottom: 1px solid transparent;
3806 | box-shadow: none
3807 | }
3808 |
3809 | .ui.menu .item {
3810 | color: var(--text)
3811 | }
3812 |
3813 | .following.bar.light.ui.secondary.menu .active.item,
3814 | .following.bar.lightui.secondary.menu .active.item:hover {
3815 | box-shadow: none;
3816 | background: var(--transparency-dark-25) !important;
3817 | color: rgb(var(--accent-color))
3818 | }
3819 |
3820 | .ui.secondary.menu .dropdown.item:hover,
3821 | .ui.secondary.menu .link.item:hover,
3822 | .ui.secondary.menu a.item:hover {
3823 | background: var(--transparency-light-10);
3824 | color: var(--text-hover)
3825 | }
3826 |
3827 | .ui.secondary.menu .active.item,
3828 | .ui.secondary.menu .active.item:hover {
3829 | box-shadow: none;
3830 | background: rgb(var(--accent-color));
3831 | color: var(--label-text-color) !important
3832 | }
3833 |
3834 | .captcha-img {
3835 | background: #fff
3836 | }
3837 |
3838 | .organization.settings .ui.menu {
3839 | background: var(--transparency-dark-10);
3840 | border: 1px solid rgba(255, 255, 255, .1);
3841 | box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .1)
3842 | }
3843 |
3844 | .ui.menu .item:before,
3845 | .ui.vertical.menu .item:before {
3846 | background: var(--transparency-light-35)
3847 | }
3848 |
3849 | .organization.settings .ui.vertical.menu {
3850 | display: block;
3851 | flex-direction: column;
3852 | background: var(--transparency-dark-15);
3853 | box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .15)
3854 | }
3855 |
3856 | .ui.vertical.menu .header.item {
3857 | background: rgb(0 0 0 / 35%)
3858 | }
3859 |
3860 | .ui.attached.segment {
3861 | border: 1px solid rgba(255, 255, 255, .1)
3862 | }
3863 |
3864 | .ui.segment {
3865 | background: var(--transparency-dark-15) !important
3866 | }
3867 |
3868 | .ui.attached.segment,
3869 | .ui.segment,
3870 | .ui.segments {
3871 | background: 0 0;
3872 | color: var(--text) !important;
3873 | border-color: rgba(255, 255, 255, .1)
3874 | }
3875 |
3876 | .ui .info.segment.top {
3877 | background-color: var(--transparency-dark-15) !important;
3878 | color: var(--text)
3879 | }
3880 |
3881 | .ui.attached.info.message,
3882 | .ui.info.message {
3883 | box-shadow: inset 0 0 0 1px rgb(255 255 255 / 10%), 0 0 0 0 transparent
3884 | }
3885 |
3886 | .ui.info.message {
3887 | background-color: var(--transparency-dark-15);
3888 | color: #276f86
3889 | }
3890 |
3891 | .ui.attached.header {
3892 | background: var(--transparency-dark-25);
3893 | border: 1px solid transparent
3894 | }
3895 |
3896 | .explore .navbar {
3897 | background: var(--transparency-dark-25) !important
3898 | }
3899 |
3900 | .ui .warning.header {
3901 | background-color: #f9edbe !important;
3902 | color: #000 !important
3903 | }
3904 |
3905 | .ui.red.message p,
3906 | .ui.red.message strong {
3907 | color: #db2828 !important
3908 | }
3909 |
3910 | .ui.progress {
3911 | background: var(--transparency-light-10)
3912 | }
3913 |
3914 | .ui.progress[data-percent="0"] .bar .progress {
3915 | color: var(--text-hover)
3916 | }
3917 |
3918 | .ui.list .list>.item .header,
3919 | .ui.list>.item .header {
3920 | color: var(--text)
3921 | }
3922 |
3923 | .pagination.menu {
3924 | background: var(--transparency-light-10) !important
3925 | }
3926 |
3927 | .ui.pagination.menu .active.item {
3928 | background: var(--transparency-dark-25);
3929 | color: var(--text-hover);
3930 | box-shadow: none
3931 | }
3932 |
3933 | .feeds .list ul li:not(:last-child) {
3934 | border-bottom: 1px solid rgba(255, 255, 255, .1)
3935 | }
3936 |
3937 | .feeds .list ul li.private {
3938 | background: var(--transparency-light-10)
3939 | }
3940 |
3941 | .ui.secondary.pointing.menu {
3942 | border-color: rgb(255 255 255 / 10%) !important
3943 | }
3944 |
3945 | .ui.secondary.pointing.menu .item {
3946 | color: var(--text)
3947 | }
3948 |
3949 | .ui.repository.list .item:not(:first-child) {
3950 | border-top: 1px solid var(--transparency-light-25)
3951 | }
3952 |
3953 | .ui.basic.modal,
3954 | .ui.basic.modal>.actions,
3955 | .ui.basic.modal>.content,
3956 | .ui.basic.modal>.header {
3957 | background: var(--modal-bg-color);
3958 | background-repeat: repeat, no-repeat;
3959 | background-attachment: fixed, fixed;
3960 | background-position: center center, center center;
3961 | background-size: auto, cover;
3962 | -webkit-background-size: auto, cover;
3963 | -moz-background-size: auto, cover;
3964 | -o-background-size: auto, cover
3965 | }
3966 |
3967 | .ui.modal {
3968 | background: var(--modal-bg-color);
3969 | background-repeat: repeat, no-repeat;
3970 | background-attachment: fixed, fixed;
3971 | background-position: center center, center center;
3972 | background-size: auto, cover;
3973 | -webkit-background-size: auto, cover;
3974 | -moz-background-size: auto, cover;
3975 | -o-background-size: auto, cover
3976 | }
3977 |
3978 | .ui.modal>.header {
3979 | display: block;
3980 | font-family: Roboto, Helvetica Neue, Arial, Helvetica, sans-serif;
3981 | background: var(--modal-bg-color);
3982 | background-repeat: repeat, no-repeat;
3983 | background-attachment: fixed, fixed;
3984 | background-position: center center, center center;
3985 | background-size: auto, cover;
3986 | -webkit-background-size: auto, cover;
3987 | -moz-background-size: auto, cover;
3988 | -o-background-size: auto, cover;
3989 | margin: 0;
3990 | padding: 1.25rem 1.5rem;
3991 | box-shadow: none;
3992 | color: var(--text);
3993 | border-bottom: 1px solid rgb(255 255 255 / .1)
3994 | }
3995 |
3996 | .ui.modal>.content {
3997 | display: block;
3998 | width: 100%;
3999 | font-size: 1em;
4000 | line-height: 1.4;
4001 | padding: 1.5rem;
4002 | background: var(--modal-bg-color);
4003 | background-repeat: repeat, no-repeat;
4004 | background-attachment: fixed, fixed;
4005 | background-position: center center, center center;
4006 | background-size: auto, cover;
4007 | -webkit-background-size: auto, cover;
4008 | -moz-background-size: auto, cover;
4009 | -o-background-size: auto, cover
4010 | }
4011 |
4012 | .ui.modal>.actions {
4013 | background: var(--modal-bg-color);
4014 | background-repeat: repeat, no-repeat;
4015 | background-attachment: fixed, fixed;
4016 | background-position: center center, center center;
4017 | background-size: auto, cover;
4018 | -webkit-background-size: auto, cover;
4019 | -moz-background-size: auto, cover;
4020 | -o-background-size: auto, cover;
4021 | padding: 1rem;
4022 | border-top: 1px solid rgb(255 255 255 / .1);
4023 | text-align: right
4024 | }
4025 |
4026 | .ui .error.header {
4027 | background-color: #f44336 !important;
4028 | color: #fff !important
4029 | }
4030 |
4031 | .ui.menu.new-menu {
4032 | background: var(--transparency-dark-25)
4033 | }
4034 |
4035 | .ui.menu.new-menu::after {
4036 | background: 0 0
4037 | }
4038 |
4039 | @media only screen and (max-width:1200px) {
4040 | .ui.menu.new-menu:after {
4041 | background-image: inherit
4042 | }
4043 | }
4044 |
4045 | .ui.secondary.pointing.menu .active.item,
4046 | .ui.secondary.pointing.menu .active.item:hover {
4047 | border-color: currentColor !important;
4048 | color: rgb(var(--accent-color)) !important
4049 | }
4050 |
4051 | .ui.tabular.menu .item {
4052 | color: var(--text)
4053 | }
4054 |
4055 | .ui.secondary.pointing.menu .dropdown.item:hover,
4056 | .ui.secondary.pointing.menu .link.item:hover,
4057 | .ui.secondary.pointing.menu a.item:hover {
4058 | background-color: transparent;
4059 | color: var(--text-hover)
4060 | }
4061 |
4062 | .item:focus {
4063 | outline: 0
4064 | }
4065 |
4066 | .ui.menu .dropdown.item .menu {
4067 | background: var(--modal-bg-color);
4068 | background-repeat: repeat, no-repeat;
4069 | background-attachment: fixed, fixed;
4070 | background-position: center center, center center;
4071 | background-size: auto, cover;
4072 | -webkit-background-size: auto, cover;
4073 | -moz-background-size: auto, cover;
4074 | -o-background-size: auto, cover
4075 | }
4076 |
4077 | .ui.menu .ui.dropdown .menu>.item {
4078 | color: var(--text) !important
4079 | }
4080 |
4081 | .ui.menu .ui.dropdown .menu>.active.item {
4082 | background: var(--transparency-dark-10) !important;
4083 | color: rgb(var(--accent-color)) !important
4084 | }
4085 |
4086 | .ui.menu .ui.dropdown .menu>.item:hover,
4087 | .ui.menu .ui.dropdown .menu>.selected.item {
4088 | background: var(--transparency-light-10) !important;
4089 | color: var(--text-hover) !important
4090 | }
4091 |
4092 | .ui.menu,
4093 | .ui.vertical.menu {
4094 | background: #ffffff00;
4095 | border-color: rgb(255 255 255 / 10%)
4096 | }
4097 |
4098 | .ui.floating.dropdown .overflow.menu .scrolling.menu.items {
4099 | border-bottom: 1px solid rgb(255 255 255 / 10%)
4100 | }
4101 |
4102 | .ui.dropdown .scrolling.menu {
4103 | border-color: rgb(255 255 255 / 10%)
4104 | }
4105 |
4106 | .ui.dropdown .menu {
4107 | background: var(--modal-bg-color);
4108 | background-repeat: repeat, no-repeat;
4109 | background-attachment: fixed, fixed;
4110 | background-position: center center, center center;
4111 | background-size: auto, cover;
4112 | -webkit-background-size: auto, cover;
4113 | -moz-background-size: auto, cover;
4114 | -o-background-size: auto, cover;
4115 | border-color: rgb(255 255 255 / 10%)
4116 | }
4117 |
4118 | .ui.dropdown .menu>.item:hover {
4119 | background: var(--transparency-light-10)
4120 | }
4121 |
4122 | .ui.dropdown .menu .selected.item,
4123 | .ui.dropdown.selected {
4124 | background: var(--transparency-dark-25);
4125 | color: var(--text-hover)
4126 | }
4127 |
4128 | .ui.dropdown .menu .active.item {
4129 | color: rgb(var(--accent-color));
4130 | outline: 0 !important
4131 | }
4132 |
4133 | .ui.selection.dropdown:hover,
4134 | input:hover,
4135 | textarea:hover {
4136 | border-color: rgb(255 255 255 / 20%);
4137 | background: var(--transparency-dark-25);
4138 | color: var(--text-hover)
4139 | }
4140 |
4141 | .ui.dropdown .menu>.item {
4142 | color: var(--text)
4143 | }
4144 |
4145 | .ui.dropdown .menu>.item:hover {
4146 | color: var(--text-hover)
4147 | }
4148 |
4149 | .ui.selection.dropdown .menu>.item {
4150 | border-top: 1px solid rgb(255 255 255 / 20%)
4151 | }
4152 |
4153 | .ui.selection.dropdown {
4154 | background: var(--transparency-dark-25);
4155 | color: var(--text-hover);
4156 | border-color: rgb(255 255 255 / 10%)
4157 | }
4158 |
4159 | .ui.selection.dropdown:focus {
4160 | border-color: rgba(255, 255, 255, .08);
4161 | background: var(--transparency-dark-50);
4162 | box-shadow: none
4163 | }
4164 |
4165 | .ui.selection.active.dropdown,
4166 | .ui.selection.active.dropdown .menu {
4167 | border-color: transparent
4168 | }
4169 |
4170 | .ui.selection.active.dropdown:hover,
4171 | .ui.selection.active.dropdown:hover .menu {
4172 | border-color: transparent
4173 | }
4174 |
4175 | .ui.selection.visible.dropdown>.text:not(.default) {
4176 | color: var(--text)
4177 | }
4178 |
4179 | .ui.default.dropdown:not(.button)>.text,
4180 | .ui.dropdown:not(.button)>.default.text {
4181 | color: var(--text);
4182 | opacity: .7
4183 | }
4184 |
4185 | .ui.pointing.dropdown>.menu:not(.hidden):after {
4186 | background: var(--modal-bg-color);
4187 | background-repeat: repeat, no-repeat;
4188 | background-attachment: fixed, fixed;
4189 | background-position: center center, center center;
4190 | background-size: auto, cover;
4191 | -webkit-background-size: auto, cover;
4192 | -moz-background-size: auto, cover;
4193 | -o-background-size: auto, cover
4194 | }
4195 |
4196 | .ui.negative.message {
4197 | background-color: #f44336;
4198 | box-shadow: none !important
4199 | }
4200 |
4201 | .ui.negative.message p {
4202 | color: var(--text-hover) !important;
4203 | box-shadow: none !important
4204 | }
4205 |
4206 | .ui.positive.message {
4207 | background-color: #4caf50;
4208 | box-shadow: none !important
4209 | }
4210 |
4211 | .ui.positive.message p {
4212 | color: var(--text-hover) !important
4213 | }
4214 |
4215 | .vue-tooltip-theme.tooltip .tooltip-inner {
4216 | background: rgb(0 0 0 / 95%);
4217 | color: var(--text)
4218 | }
4219 |
4220 | svg.vch__wrapper .vch__days__labels__wrapper text.vch__day__label[data-v-a9cfea66],
4221 | svg.vch__wrapper .vch__legend__wrapper text[data-v-a9cfea66],
4222 | svg.vch__wrapper .vch__months__labels__wrapper text.vch__month__label[data-v-a9cfea66] {
4223 | fill: var(--text)
4224 | }
4225 |
4226 | #app .ui.item.menu,
4227 | .ui.item.menu .item {
4228 | background: var(--transparency-dark-15);
4229 | border-color: rgb(255 255 255 / 10%)
4230 | }
4231 |
4232 | #app .ui.menu .active.item {
4233 | color: var(--text)
4234 | }
4235 |
4236 | .ui.menu .active.item {
4237 | background: var(--transparency-dark-25);
4238 | color: var(--text);
4239 | font-weight: 400;
4240 | box-shadow: none
4241 | }
4242 |
4243 | .ui.menu .active.item:hover,
4244 | .ui.vertical.menu .active.item:hover {
4245 | background: rgb(var(--accent-color), .5) !important;
4246 | color: var(--label-text-color) !important
4247 | }
4248 |
4249 | .ui.menu a.item:hover {
4250 | color: var(--text-hover);
4251 | background: var(--transparency-dark-15)
4252 | }
4253 |
4254 | #app .ui.link.menu .item:hover,
4255 | .ui.menu .dropdown.item:hover,
4256 | .ui.menu .link.item:hover {
4257 | cursor: pointer;
4258 | background: var(--transparency-dark-05);
4259 | color: var(--text-hover)
4260 | }
4261 |
4262 | #app .ui.secondary.segment {
4263 | background: var(--transparency-dark-15);
4264 | color: rgba(0, 0, 0, .6)
4265 | }
4266 |
4267 | svg.vch__wrapper rect.vch__day__square[data-v-a9cfea66]:hover {
4268 | stroke: rgb(var(--accent-color));
4269 | stroke-width: 1px
4270 | }
4271 |
4272 | .heatmap-color-0 {
4273 | background: var(--transparency-dark-25)
4274 | }
4275 |
4276 | .activity-bar-graph {
4277 | color: #9e9e9e
4278 | }
4279 |
4280 | .heatmap-color-1 {
4281 | background-color: var(--heatmap-color-1)
4282 | }
4283 |
4284 | .heatmap-color-2 {
4285 | background-color: var(--heatmap-color-2)
4286 | }
4287 |
4288 | .heatmap-color-3 {
4289 | background-color: var(--heatmap-color-3)
4290 | }
4291 |
4292 | .heatmap-color-4 {
4293 | background-color: var(--heatmap-color-4)
4294 | }
4295 |
4296 | .activity-bar-graph,
4297 | .heatmap-color-5 {
4298 | background-color: var(--heatmap-color-5)
4299 | }
4300 |
4301 | .repository .header-wrapper {
4302 | background: var(--transparency-dark-25)
4303 | }
4304 |
4305 | .repository .diff-detail-box {
4306 | background: var(--main-bg-color);
4307 | background-repeat: repeat, no-repeat;
4308 | background-attachment: fixed, fixed;
4309 | background-position: center center, center center;
4310 | background-size: auto, cover;
4311 | -webkit-background-size: auto, cover;
4312 | -moz-background-size: auto, cover;
4313 | -o-background-size: auto, cover
4314 | }
4315 |
4316 | .repository .diff-detail-box.sticky {
4317 | border-bottom: 1px solid rgb(255 255 255 / .1)
4318 | }
4319 |
4320 | .repository .diff-file-box .code-diff-unified tbody tr.del-code td {
4321 | background-color: #3c2626 !important;
4322 | border-color: #634343 !important
4323 | }
4324 |
4325 | .repository .diff-file-box .code-diff-unified tbody tr.del-code td.lines-num {
4326 | background-color: #4e2c2c !important
4327 | }
4328 |
4329 | .repository .diff-file-box .code-diff-unified tbody tr.add-code td {
4330 | background-color: #283e2d !important;
4331 | border-color: #314a37 !important
4332 | }
4333 |
4334 | .repository .diff-file-box .code-diff-unified tbody tr.add-code td.lines-num {
4335 | background-color: #2c4632 !important
4336 | }
4337 |
4338 | .repository.view.issue .comment-list .comment .comment-container {
4339 | border: 1px solid rgba(255, 255, 255, .1)
4340 | }
4341 |
4342 | .comment-header {
4343 | border-bottom: 1px solid rgba(255, 255, 255, .1) !important
4344 | }
4345 |
4346 | .removed-code {
4347 | background-color: #5f3737
4348 | }
4349 |
4350 | .added-code {
4351 | background-color: #3a523a
4352 | }
4353 |
4354 | .repository .segment.reactions .ui.label.basic {
4355 | color: rgb(var(--accent-color)) !important
4356 | }
4357 |
4358 | .repository .diff-file-box .code-diff-split tbody tr.add-code td:first-child,
4359 | .repository .diff-file-box .code-diff-split tbody tr.add-code td:nth-child(2),
4360 | .repository .diff-file-box .code-diff-split tbody tr.add-code td:nth-child(3),
4361 | .repository .diff-file-box .code-diff-split tbody tr.del-code td:nth-child(4),
4362 | .repository .diff-file-box .code-diff-split tbody tr.del-code td:nth-child(5),
4363 | .repository .diff-file-box .code-diff-split tbody tr.del-code td:nth-child(6) {
4364 | background-color: var(--code-background)
4365 | }
4366 |
4367 | .repository .diff-file-box .code-diff-split tbody tr td.add-code,
4368 | .repository .diff-file-box .code-diff-split tbody tr td.lines-num-new.add-code,
4369 | .repository .diff-file-box .code-diff-split tbody tr.add-code td:nth-child(4),
4370 | .repository .diff-file-box .code-diff-split tbody tr.add-code td:nth-child(5),
4371 | .repository .diff-file-box .code-diff-split tbody tr.add-code td:nth-child(6) {
4372 | background-color: #283e2d !important;
4373 | border-color: #314a37 !important
4374 | }
4375 |
4376 | .repository .diff-file-box .code-diff-split tbody tr td.del-code,
4377 | .repository .diff-file-box .code-diff-split tbody tr.del-code td:first-child,
4378 | .repository .diff-file-box .code-diff-split tbody tr.del-code td:nth-child(2),
4379 | .repository .diff-file-box .code-diff-split tbody tr.del-code td:nth-child(3) {
4380 | background-color: #3c2626 !important;
4381 | border-color: #634343 !important
4382 | }
4383 |
4384 | .repository.view.issue .comment-list .timeline-item .badge.badge-commit {
4385 | border-color: transparent;
4386 | background: radial-gradient(#fff0 40%, transparent 0) no-repeat
4387 | }
4388 |
4389 | .tag-code,
4390 | .tag-code td {
4391 | background: var(--transparency-light-10) !important
4392 | }
4393 |
4394 | .tag-code td.lines-num {
4395 | background-color: rgba(255, 255, 255, 0) !important
4396 | }
4397 |
4398 | a.blob-excerpt {
4399 | color: var(--text);
4400 | background: var(--transparency-light-10) !important
4401 | }
4402 |
4403 | td.blob-excerpt {
4404 | background: var(--transparency-dark-15)
4405 | }
4406 |
4407 | .repo-header .ui.breadcrumb a {
4408 | color: rgb(var(--accent-color))
4409 | }
4410 |
4411 | .repo-header .ui.breadcrumb a:hover {
4412 | color: var(--accent-color-hover)
4413 | }
4414 |
4415 | .repo-header .ui.breadcrumb .divider {
4416 | color: rgb(255 255 255 / 40%)
4417 | }
4418 |
4419 | .ui.tabular.menu .item.active {
4420 | color: var(--text)
4421 | }
4422 |
4423 | .ui.tabular.menu .active.item {
4424 | background: none var(--main-bg-color) !important;
4425 | background-repeat: repeat, no-repeat;
4426 | background-attachment: fixed, fixed;
4427 | background-position: center center, center center;
4428 | background-size: auto, cover;
4429 | -webkit-background-size: auto, cover;
4430 | -moz-background-size: auto, cover;
4431 | -o-background-size: auto, cover;
4432 | color: var(--text);
4433 | border-color: rgb(255 255 255 / 10%) !important
4434 | }
4435 |
4436 | .ui.tabular.menu {
4437 | border-bottom: 1px solid rgb(255 255 255 / 10%)
4438 | }
4439 |
4440 | .ui.tabular.menu .active.item,
4441 | .ui.tabular.menu .active.item:hover,
4442 | .ui.tabular.menu .item:hover {
4443 | color: rgb(var(--accent-color)) !important;
4444 | border-radius: .28571429rem .28571429rem 0 0 !important
4445 | }
4446 |
4447 | .ui.card,
4448 | .ui.cards>.card {
4449 | background: var(--transparency-dark-15);
4450 | box-shadow: none;
4451 | border: 1px solid var(--transparency-light-35)
4452 | }
4453 |
4454 | .ui.cards a.card:hover,
4455 | .ui.link.card:hover,
4456 | .ui.link.cards .card:not(.icon):hover,
4457 | a.ui.card:hover {
4458 | border: 1px solid rgb(255 255 255 / 20%);
4459 | background: var(--transparency-light-15)
4460 | }
4461 |
4462 | .repository .ui.menu {
4463 | background: rgb(0 0 0 / 0%);
4464 | box-shadow: 0 1px 2px 0 rgba(34, 36, 38, .15)
4465 | }
4466 |
4467 | .repository.migrate .card {
4468 | border: 1px solid transparent
4469 | }
4470 |
4471 | .ui.card>.content,
4472 | .ui.cards>.card>.content {
4473 | border-color: var(--transparency-light-35) !important
4474 | }
4475 |
4476 | .user.profile .ui.card .extra.content>ul>li:not(:last-child) {
4477 | border-bottom: 1px solid var(--transparency-light-35)
4478 | }
4479 |
4480 | .ui.ui.menu .item.disabled {
4481 | cursor: default;
4482 | background-color: transparent;
4483 | color: rgb(255 255 255 / 30%);
4484 | pointer-events: none
4485 | }
4486 |
4487 | .repository.file.editor .commit-form-wrapper .commit-form {
4488 | position: relative;
4489 | padding: 15px;
4490 | margin-bottom: 10px;
4491 | border: 1px solid rgb(255 255 255 / .1);
4492 | border-radius: 3px;
4493 | background: var(--transparency-light-10)
4494 | }
4495 |
4496 | .repository.release #release-list {
4497 | border-top: 1px solid rgb(255 255 255 / .1)
4498 | }
4499 |
4500 | .repository.release #release-list>li .detail {
4501 | border-left: 1px solid rgb(255 255 255 / .1)
4502 | }
4503 |
4504 | .repository.release #release-list>li .detail .download .list {
4505 | border-top: 1px solid rgb(255 255 255 / .1)
4506 | }
4507 |
4508 | .repository.release #release-list>li .detail .download .list li {
4509 | border-bottom: 1px solid rgb(255 255 255 / .1)
4510 | }
4511 |
4512 | .repository.wiki.pages .ui.ui.table td.grey:not(.marked),
4513 | .repository.wiki.pages .ui.ui.ui.ui.table tr.grey:not(.marked) {
4514 | background: var(--transparency-light-10)
4515 | }
4516 |
4517 | .editor-preview,
4518 | .editor-preview-side {
4519 | background: var(--modal-bg-color) !important;
4520 | background-repeat: repeat, no-repeat;
4521 | background-attachment: fixed, fixed;
4522 | background-position: center center, center center;
4523 | background-size: auto, cover;
4524 | -webkit-background-size: auto, cover;
4525 | -moz-background-size: auto, cover;
4526 | -o-background-size: auto, cover
4527 | }
4528 |
4529 | #git-graph-container li a {
4530 | color: var(--link-color)
4531 | }
4532 |
4533 | #git-graph-container li a:hover {
4534 | color: var(--text-hover)
4535 | }
4536 |
4537 | #git-graph-container #rev-list li.highlight,
4538 | #git-graph-container #rev-list li.hover {
4539 | background: var(--transparency-light-05)
4540 | }
4541 |
4542 | #git-graph-container #rev-list li.highlight.hover {
4543 | background: var(--transparency-light-05)
4544 | }
4545 |
4546 | #git-graph-container li .author {
4547 | color: rgb(var(--accent-color))
4548 | }
4549 |
4550 | .repository .ui.segment.sub-menu .list .item a,
4551 | .repository .ui.segment.sub-menu .list .item span.ui {
4552 | color: var(--text)
4553 | }
4554 |
4555 | .repository .ui.segment.sub-menu .list .item a:hover,
4556 | .repository .ui.segment.sub-menu .list .item b:hover {
4557 | color: var(--text-hover) !important
4558 | }
4559 |
4560 | .repository .ui.segment.sub-menu .list .item.active {
4561 | background: rgba(255, 255, 255, .07)
4562 | }
4563 |
4564 | .repository.file.list #repo-files-table tbody .svg {
4565 | color: var(--text)
4566 | }
4567 |
4568 | .ui.blue.labels .label,
4569 | .ui.grey.labels .label,
4570 | .ui.ui.ui.blue.label,
4571 | .ui.ui.ui.grey.label {
4572 | background-color: rgb(var(--accent-color)) !important;
4573 | border-color: rgb(var(--accent-color)) !important;
4574 | color: var(--label-text-color)
4575 | }
4576 |
4577 | .ui.black.labels .label,
4578 | .ui.ui.ui.black.label {
4579 | background-color: rgb(var(--accent-color));
4580 | border-color: rgb(var(--accent-color));
4581 | color: var(--label-text-color)
4582 | }
4583 |
4584 | .repository #commits-table.ui.basic.striped.table tbody tr:nth-child(2n) {
4585 | background: var(--transparency-dark-15) !important
4586 | }
4587 |
4588 | .repository #commits-table.ui.table>tbody {
4589 | background-color: transparent !important
4590 | }
4591 |
4592 | .CodeMirror-cursor {
4593 | border-left: 1px solid var(--text)
4594 | }
4595 |
4596 | .CodeMirror,
4597 | .EasyMDEContainer .CodeMirror {
4598 | border: 1px solid rgb(255 255 255 / .1);
4599 | background: var(--transparency-dark-25)
4600 | }
4601 |
4602 | .CodeMirror-focused {
4603 | border-color: rgb(255 255 255 / 20%) !important
4604 | }
4605 |
4606 | .editor-toolbar a,
4607 | .editor-toolbar button {
4608 | color: var(--text-hover) !important
4609 | }
4610 |
4611 | .editor-toolbar {
4612 | border: 1px solid rgb(255 255 255 / .1);
4613 | border-left: 1px solid rgb(255 255 255 / .1);
4614 | border-right: 1px solid rgb(255 255 255 / .1)
4615 | }
4616 |
4617 | .editor-toolbar a.active,
4618 | .editor-toolbar a:hover,
4619 | .editor-toolbar button.active,
4620 | .editor-toolbar button:hover {
4621 | background: var(--transparency-light-25);
4622 | border-color: var(--transparency-light-25)
4623 | }
4624 |
4625 | .dropzone {
4626 | min-height: 150px;
4627 | border: 2px solid rgba(0, 0, 0, .3);
4628 | background: var(--transparency-light-25) !important;
4629 | padding: 20px
4630 | }
4631 |
4632 | .ui.form .dropzone {
4633 | border: 2px dashed rgb(var(--accent-color)) !important;
4634 | box-shadow: none !important;
4635 | padding: 0;
4636 | min-height: 5rem;
4637 | border-radius: 4px
4638 | }
4639 |
4640 | .ui.form .dropzone .dz-button {
4641 | color: var(--text-hover) !important
4642 | }
4643 |
4644 | .ui.form .dropzone:hover .dz-button {
4645 | color: var(--link-color) !important
4646 | }
4647 |
4648 | .repository .metas .ui.list .item {
4649 | color: var(--text) !important
4650 | }
4651 |
4652 | .repository.view.issue .comment-list .timeline:before {
4653 | background-color: transparent
4654 | }
4655 |
4656 | .repository.view.issue .comment-list .comment .content>.header {
4657 | background: var(--transparency-dark-25)
4658 | }
4659 |
4660 | .repository.view.issue .comment-list .comment .content>.header .actions a {
4661 | color: rgb(255 255 255)
4662 | }
4663 |
4664 | .repository.view.issue .comment-list .comment .content>.header .actions a:hover {
4665 | color: rgb(var(--accent-color))
4666 | }
4667 |
4668 | .repository.view.issue .pull-desc code {
4669 | color: rgb(var(--accent-color))
4670 | }
4671 |
4672 | .repository .segment.reactions .ui.label.basic.blue {
4673 | background-color: #ffffff00 !important;
4674 | border-color: inherit !important
4675 | }
4676 |
4677 | .repository.view.issue .comment-list .comment:target>.content {
4678 | box-shadow: 0 0 10px #000
4679 | }
4680 |
4681 | .repository.view.issue .comment-list .timeline-item .badge {
4682 | background-color: rgb(var(--accent-color));
4683 | border: 2px solid rgb(var(--accent-color));
4684 | color: var(--text-hover)
4685 | }
4686 |
4687 | .issue.list>.item .desc .overdue {
4688 | color: #ec2626
4689 | }
4690 |
4691 | .ui.table>thead>tr>th {
4692 | background: var(--transparency-dark-25);
4693 | color: var(--text);
4694 | border-bottom: 1px solid rgba(255, 255, 255, .1)
4695 | }
4696 |
4697 | .ui.table {
4698 | width: 100%;
4699 | background: rgb(255 255 255 / 0);
4700 | border: 1px solid rgba(255, 255, 255, .1);
4701 | color: var(--text)
4702 | }
4703 |
4704 | table#repo-files-table {
4705 | background: rgb(0 0 0 / 35%)
4706 | }
4707 |
4708 | .ui.table>tbody {
4709 | border: 1px solid rgba(34, 36, 38, .15);
4710 | color: var(--text)
4711 | }
4712 |
4713 | .ui.table>tbody>tr>td,
4714 | w .ui.table>tr>td {
4715 | border-top: 1px solid rgb(255 255 255 / 10%)
4716 | }
4717 |
4718 | .repository.file.list #repo-files-table thead tr:hover {
4719 | background-color: rgba(0, 0, 0, 0) !important
4720 | }
4721 |
4722 | .repository.file.list #repo-files-table tr:hover {
4723 | background: var(--transparency-light-10)
4724 | }
4725 |
4726 | .ui.table tbody tr td.selectable:hover,
4727 | .ui.ui.selectable.table>tbody>tr:hover {
4728 | background: var(--transparency-light-10);
4729 | color: var(--text-hover)
4730 | }
4731 |
4732 | footer {
4733 | background: var(--transparency-dark-25);
4734 | border-top: 1px solid var(--transparency-light-25)
4735 | }
4736 |
4737 | .btn:active,
4738 | .btn:focus {
4739 | outline: 0 !important
4740 | }
4741 |
4742 | .ui.checkbox input:checked~label:after {
4743 | color: var(--label-text-color) !important;
4744 | background: rgb(var(--accent-color))
4745 | }
4746 |
4747 | .ui.toggle.checkbox input:checked~label:before {
4748 | background: var(--transparency-dark-25) !important
4749 | }
4750 |
4751 | .ui.toggle.checkbox input:checked~label,
4752 | .ui.toggle.checkbox label {
4753 | color: var(--label-text-color) !important
4754 | }
4755 |
4756 | .ui.toggle.checkbox input:focus:checked~label:before,
4757 | .ui.toggle.checkbox label:before {
4758 | background: var(--transparency-light-10) !important;
4759 | background: var(--transparency-light-10) !important
4760 | }
4761 |
4762 | .ui.checkbox input:focus~label,
4763 | .ui.checkbox input:focus~label:after,
4764 | .ui.toggle.checkbox input:focus:checked~label {
4765 | color: var(--text) !important
4766 | }
4767 |
4768 | .ui.blue.button,
4769 | .ui.blue.buttons .button,
4770 | .ui.primary.button,
4771 | .ui.primary.buttons .button {
4772 | background-color: var(--button-color) !important;
4773 | color: var(--button-text) !important;
4774 | border-color: var(--button-color) !important
4775 | }
4776 |
4777 | .ui.basic.blue.button:focus,
4778 | .ui.basic.blue.buttons .button:focus,
4779 | .ui.basic.primary.button:focus,
4780 | .ui.basic.primary.buttons .button:focus,
4781 | .ui.blue.button:hover,
4782 | .ui.blue.buttons .button:hover,
4783 | .ui.primary.button:hover,
4784 | .ui.primary.buttons .button:hover {
4785 | background-color: var(--button-color-hover) !important;
4786 | color: var(--button-text) !important;
4787 | box-shadow: inset 0 0 0 1px transparent !important;
4788 | border-color: var(--button-color-hover) !important
4789 | }
4790 |
4791 | .ui.teal.button,
4792 | .ui.teal.buttons .button {
4793 | background-color: var(--button-color);
4794 | color: var(--button-text);
4795 | text-shadow: none;
4796 | background-image: none
4797 | }
4798 |
4799 | .ui.teal.button:hover,
4800 | .ui.teal.buttons .button:hover {
4801 | background-color: var(--button-color-hover);
4802 | color: var(--button-text);
4803 | text-shadow: none
4804 | }
4805 |
4806 | .ui.blue.button,
4807 | .ui.blue.buttons .button {
4808 | background-color: var(--button-color) !important;
4809 | color: var(--button-text)
4810 | }
4811 |
4812 | .ui.blue.button:hover,
4813 | .ui.blue.buttons .button:hover {
4814 | background-color: var(--button-color-hover) !important;
4815 | color: var(--button-text)
4816 | }
4817 |
4818 | .ui.active.button,
4819 | .ui.active.button:hover {
4820 | color: var(--button-text)
4821 | }
4822 |
4823 | .ui.active.button,
4824 | .ui.active.button:active,
4825 | .ui.active.button:hover {
4826 | background-color: var(--button-color-hover)
4827 | }
4828 |
4829 | .ui.button {
4830 | background: var(--button-color);
4831 | color: var(--button-text);
4832 | border: 1px solid var(--button-color) !important
4833 | }
4834 |
4835 | .ui.button:hover {
4836 | background: var(--button-color-hover);
4837 | color: var(--button-text);
4838 | border: 1px solid var(--button-color-hover) !important
4839 | }
4840 |
4841 | .ui.basic.blue.button,
4842 | .ui.basic.blue.buttons .button {
4843 | box-shadow: inset 0 0 0 1px rgb(var(--accent-color)) !important;
4844 | color: var(--button-text) !important
4845 | }
4846 |
4847 | .ui.basic.blue.button:active,
4848 | .ui.basic.blue.button:focus,
4849 | .ui.basic.blue.button:hover,
4850 | .ui.basic.blue.buttons .button:active,
4851 | .ui.basic.blue.buttons .button:focus,
4852 | .ui.basic.blue.buttons .button:hover {
4853 | background: var(--button-color) !important;
4854 | color: var(--button-text) !important
4855 | }
4856 |
4857 | .ui.basic.blue.button,
4858 | .ui.basic.blue.buttons .button,
4859 | .ui.basic.buttons .button,
4860 | .ui.basic.primary.button,
4861 | .ui.basic.primary.buttons .button {
4862 | color: var(--button-text);
4863 | box-shadow: inset 0 0 0 1px rgb(255 255 255 / 15%) !important
4864 | }
4865 |
4866 | .ui.basic.button {
4867 | color: var(--text)
4868 | }
4869 |
4870 | .ui.basic.button:focus,
4871 | .ui.basic.button:hover {
4872 | color: var(--text-hover)
4873 | }
4874 |
4875 | .ui.basic.buttons .button:focus,
4876 | .ui.basic.buttons .button:hover {
4877 | background: var(--transparency-dark-15);
4878 | color: var(--button-text)
4879 | }
4880 |
4881 | .ui.basic.red.button,
4882 | .ui.basic.red.buttons .button {
4883 | background: #f44336;
4884 | box-shadow: inset 0 0 0 1px #f44336;
4885 | color: var(--button-text)
4886 | }
4887 |
4888 | .ui.basic.red.button:hover,
4889 | .ui.basic.red.buttons .button:hover {
4890 | background: #ec2626;
4891 | box-shadow: inset 0 0 0 1px #ec2626;
4892 | color: var(--button-text)
4893 | }
4894 |
4895 | .ui.inverted.red.basic.button:hover,
4896 | .ui.inverted.red.basic.buttons .button:hover,
4897 | .ui.inverted.red.buttons .basic.button:hover {
4898 | box-shadow: inset 0 0 0 2px #ec2626;
4899 | color: var(--button-text)
4900 | }
4901 |
4902 | .repo-buttons .ui.basic.label,
4903 | .ui.basic.labels .label {
4904 | background: none var(--button-color);
4905 | border: 1px solid rgba(34, 36, 38, .15);
4906 | color: var(--label-text-color)
4907 | }
4908 |
4909 | .repo-buttons .ui.basic.labels a.label:hover,
4910 | .repo-buttons .ui.labeled.button>.label:hover,
4911 | a.ui.basic.label:hover {
4912 | text-decoration: none;
4913 | background: none var(--button-color-hover);
4914 | color: var(--label-text-color);
4915 | box-shadow: none
4916 | }
4917 |
4918 | .repo-buttons .ui.labeled.button.disabled>.label {
4919 | color: var(--button-text-color);
4920 | background: var(--button-color) !important
4921 | }
4922 |
4923 | .repo-buttons .disabled-repo-button a.button:hover {
4924 | background: 0 0 !important;
4925 | color: rgb(255 255 255 / 60%) !important;
4926 | box-shadow: inset 0 0 0 1px rgba(34, 36, 38, .15) !important
4927 | }
4928 |
4929 | .repo-title {
4930 | color: var(--text-hover)
4931 | }
4932 |
4933 | .ui.green.button,
4934 | .ui.green.button:focus,
4935 | .ui.green.buttons .button,
4936 | .ui.green.buttons .button:focus,
4937 | .ui.green.labels .label,
4938 | .ui.ui.ui.green.label {
4939 | background-color: rgb(var(--accent-color));
4940 | color: var(--label-text-color)
4941 | }
4942 |
4943 | .ui.label,
4944 | .ui.menu .item>.label {
4945 | background-color: rgb(var(--accent-color));
4946 | color: var(--label-text-color)
4947 | }
4948 |
4949 | .ui.labels a.label:hover,
4950 | a.ui.label:hover {
4951 | background-color: #fff;
4952 | color: rgba(0, 0, 0, .8)
4953 | }
4954 |
4955 | .ui .sha.label {
4956 | background: var(--button-color) !important;
4957 | color: var(--label-text-color) !important;
4958 | border: 1px solid var(--button-color) !important
4959 | }
4960 |
4961 | a.ui.label:hover,
4962 | a.ui.labels .label:hover {
4963 | background: var(--button-color-hover);
4964 | color: var(--label-text-color)
4965 | }
4966 |
4967 | .repository #commits-table td.sha .sha.label,
4968 | .repository #repo-files-table .sha.label,
4969 | .repository .timeline-item.commits-list .singular-commit .sha.label {
4970 | border: 1px solid transparent
4971 | }
4972 |
4973 | .repository.file.list #repo-files-table tbody .svg.octicon-file-directory,
4974 | .repository.file.list #repo-files-table tbody .svg.octicon-file-submodule {
4975 | color: rgb(var(--accent-color))
4976 | }
4977 |
4978 | input {
4979 | caret-color: var(--text) !important
4980 | }
4981 |
4982 | .ui.form input,
4983 | .ui.form input:not([type]),
4984 | .ui.form input[type=date],
4985 | .ui.form input[type=datetime-local],
4986 | .ui.form input[type=email],
4987 | .ui.form input[type=file],
4988 | .ui.form input[type=number],
4989 | .ui.form input[type=password],
4990 | .ui.form input[type=search],
4991 | .ui.form input[type=tel],
4992 | .ui.form input[type=text],
4993 | .ui.form input[type=time],
4994 | .ui.form input[type=url] {
4995 | background: var(--transparency-dark-25);
4996 | border: 1px solid transparent;
4997 | color: var(--text);
4998 | border-radius: var(--border-radius-bar);
4999 | box-shadow: inset 0 0 0 0 transparent;
5000 | transition: color .1s ease, border-color .1s ease;
5001 | caret-color: var(--text) !important
5002 | }
5003 |
5004 | .ui.form input:not([type]):focus,
5005 | .ui.form input[type=date]:focus,
5006 | .ui.form input[type=datetime-local]:focus,
5007 | .ui.form input[type=email]:focus,
5008 | .ui.form input[type=file]:focus,
5009 | .ui.form input[type=number]:focus,
5010 | .ui.form input[type=password]:focus,
5011 | .ui.form input[type=search]:focus,
5012 | .ui.form input[type=tel]:focus,
5013 | .ui.form input[type=text]:focus,
5014 | .ui.form input[type=time]:focus,
5015 | .ui.form input[type=url]:focus {
5016 | color: var(--text);
5017 | border-color: rgb(0 0 0 / 15%);
5018 | border-radius: .28571429rem;
5019 | background: var(--transparency-dark-50);
5020 | box-shadow: inset 0 0 0 0 rgba(34, 36, 38, .35);
5021 | caret-color: var(--text) !important
5022 | }
5023 |
5024 | .ui.form input:focus:hover,
5025 | .ui.form textarea:focus:hover,
5026 | input:focus:hover,
5027 | textarea:focus:hover {
5028 | background: var(--transparency-dark-50) !important;
5029 | border-color: rgb(255 255 255 / .1) !important;
5030 | color: var(--text-hover) !important
5031 | }
5032 |
5033 | .ui.form input:hover,
5034 | .ui.form textarea:hover,
5035 | input:hover,
5036 | textarea:hover {
5037 | background: var(--transparency-dark-25) !important;
5038 | border-color: rgb(255 255 255 / .1) !important;
5039 | color: var(--text-hover) !important
5040 | }
5041 |
5042 | .ui.form textarea:focus {
5043 | color: var(--text);
5044 | border-color: transparent;
5045 | background: var(--transparency-dark-50);
5046 | box-shadow: inset 0 0 0 0 rgba(34, 36, 38, .35);
5047 | -webkit-appearance: none;
5048 | caret-color: var(--text) !important
5049 | }
5050 |
5051 | .ui.form textarea,
5052 | .ui.input textarea {
5053 | background: var(--transparency-dark-25);
5054 | border: 1px solid rgba(34, 36, 38, .15);
5055 | color: var(--text);
5056 | caret-color: var(--text) !important
5057 | }
5058 |
5059 | .ui.input.focus>input,
5060 | .ui.input>input:focus {
5061 | border-color: transparent;
5062 | background: var(--transparency-dark-50);
5063 | color: var(--text);
5064 | box-shadow: none;
5065 | caret-color: var(--text) !important
5066 | }
5067 |
5068 | .ui.input>input {
5069 | background: var(--transparency-dark-25);
5070 | border: 1px solid rgba(34, 36, 38, .15);
5071 | color: var(--text)
5072 | }
5073 |
5074 | .ui.icon.input>i.icon {
5075 | color: var(--text)
5076 | }
5077 |
5078 | .ui.action.input:not([class*="left action"])>input:focus {
5079 | border-right-color: rgb(var(--accent-color))
5080 | }
5081 |
5082 | .markdown tbody {
5083 | background: #f000 !important
5084 | }
5085 |
5086 | .markdown:not(code) table tr {
5087 | background: var(--transparency-dark-25);
5088 | border-top: 1px solid #ccc
5089 | }
5090 |
5091 | .markdown:not(code) table tr:nth-child(2n) {
5092 | background: var(--transparency-dark-45)
5093 | }
5094 |
5095 | .markdown:not(code) code,
5096 | .markdown:not(code) tt {
5097 | background: var(--transparency-dark-25)
5098 | }
5099 |
5100 | ::-webkit-selection {
5101 | background-color: rgb(var(--accent-color)) !important;
5102 | color: var(--text-hover) !important
5103 | }
5104 |
5105 | ::-moz-selection {
5106 | background-color: rgb(var(--accent-color)) !important;
5107 | color: var(--text-hover) !important
5108 | }
5109 |
5110 | ::selection {
5111 | background-color: rgb(var(--accent-color)) !important;
5112 | color: var(--text-hover) !important
5113 | }
5114 |
5115 | input::-webkit-selection,
5116 | textarea::-webkit-selection {
5117 | background-color: rgb(var(--accent-color)) !important;
5118 | color: var(--text-hover) !important
5119 | }
5120 |
5121 | input::-moz-selection,
5122 | textarea::-moz-selection {
5123 | background-color: rgb(var(--accent-color)) !important;
5124 | color: var(--text-hover) !important
5125 | }
5126 |
5127 | input::-moz-selection,
5128 | textarea::-moz-selection {
5129 | background-color: rgb(var(--accent-color)) !important;
5130 | color: var(--text-hover) !important
5131 | }
5132 |
5133 | input::selection,
5134 | textarea::selection {
5135 | background-color: rgb(var(--accent-color)) !important;
5136 | color: var(--text-hover) !important
5137 | }
5138 |
5139 | ::-webkit-calendar-picker-indicator {
5140 | filter: invert(1)
5141 | }
5142 |
5143 | .lines-num {
5144 | color: var(--text)
5145 | }
5146 |
5147 | .code-view .lines-num:hover {
5148 | color: var(--text-hover) !important;
5149 | background: rgb(var(--accent-color), .5)
5150 | }
5151 |
5152 | .code-view .lines-num:active,
5153 | .code-view .lines-num:focus {
5154 | color: var(--text-hover) !important;
5155 | background: rgb(var(--accent-color), .5)
5156 | }
5157 |
5158 | .code-line-button {
5159 | background-color: var(--button-color);
5160 | color: var(--button-text);
5161 | border: 1px solid var(--button-color)
5162 | }
5163 |
5164 | .code-line-button:hover {
5165 | color: var(--button-text-hover)
5166 | }
5167 |
5168 | .ui.popup {
5169 | background-color: var(--button-color);
5170 | color: var(--button-text);
5171 | border-color: var(--button-color)
5172 | }
5173 |
5174 | .ui.top.popup:before {
5175 | background: var(--button-color)
5176 | }
5177 |
5178 | .ui.popup:before {
5179 | box-shadow: 1px 1px var(--button-color)
5180 | }
5181 |
5182 | .ui.link.list .item,
5183 | .ui.link.list .item a:not(.ui),
5184 | .ui.link.list a.item {
5185 | color: var(--button-text)
5186 | }
5187 |
5188 | .ui.link.list.list .item a:not(.ui):active,
5189 | .ui.link.list.list .item a:not(.ui):hover,
5190 | .ui.link.list.list a.item:active,
5191 | .ui.link.list.list a.item:hover {
5192 | color: var(--button-text-hover)
5193 | }
5194 |
5195 | .divider:not(.divider-text),
5196 | .ui.dropdown .menu>.divider {
5197 | border-top: 1px solid var(--transparency-light-35)
5198 | }
5199 |
5200 | #notification_table {
5201 | background: var(--transparency-dark-15);
5202 | border: 1px solid var(--transparency-light-15);
5203 | border-radius: var(--border-radius)
5204 | }
--------------------------------------------------------------------------------