rechrome 1.11.1 → 1.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/extension/connect.html +30 -0
- package/extension/icons/icon-128.png +0 -0
- package/extension/icons/icon-16.png +0 -0
- package/extension/icons/icon-32.png +0 -0
- package/extension/icons/icon-48.png +0 -0
- package/extension/lib/background.mjs +368 -0
- package/extension/lib/ui/authToken.css +1366 -0
- package/extension/lib/ui/authToken.js +7171 -0
- package/extension/lib/ui/connect.js +181 -0
- package/extension/lib/ui/icon-16.png +0 -0
- package/extension/lib/ui/icon-32.png +0 -0
- package/extension/lib/ui/status.js +71 -0
- package/extension/manifest.json +34 -0
- package/extension/status.html +14 -0
- package/package.json +2 -1
- package/rech.js +48 -14
- package/rech.ts +48 -14
|
@@ -0,0 +1,1366 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright (c) Microsoft Corporation.
|
|
3
|
+
|
|
4
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
you may not use this file except in compliance with the License.
|
|
6
|
+
You may obtain a copy of the License at
|
|
7
|
+
|
|
8
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
|
|
10
|
+
Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
See the License for the specific language governing permissions and
|
|
14
|
+
limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
body {
|
|
18
|
+
margin: 0;
|
|
19
|
+
padding: 0;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
/* Base styles */
|
|
23
|
+
.app-container {
|
|
24
|
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
|
|
25
|
+
background-color: #ffffff;
|
|
26
|
+
color: #1f2328;
|
|
27
|
+
margin: 0;
|
|
28
|
+
padding: 16px;
|
|
29
|
+
min-height: 100vh;
|
|
30
|
+
font-size: 14px;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.content-wrapper {
|
|
34
|
+
max-width: 600px;
|
|
35
|
+
margin: 0 auto;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/* Status Banner */
|
|
39
|
+
.status-container {
|
|
40
|
+
display: flex;
|
|
41
|
+
align-items: center;
|
|
42
|
+
justify-content: space-between;
|
|
43
|
+
margin-bottom: 16px;
|
|
44
|
+
padding-right: 12px;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.status-banner {
|
|
48
|
+
padding: 12px;
|
|
49
|
+
font-size: 14px;
|
|
50
|
+
font-weight: 500;
|
|
51
|
+
display: flex;
|
|
52
|
+
align-items: center;
|
|
53
|
+
gap: 8px;
|
|
54
|
+
flex: 1;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.status-banner.connected {
|
|
58
|
+
color: #1f2328;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.status-banner.connected::before {
|
|
62
|
+
content: "\2705";
|
|
63
|
+
margin-right: 8px;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.status-banner.error {
|
|
67
|
+
color: #1f2328;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.status-banner.error::before {
|
|
71
|
+
content: "\274C";
|
|
72
|
+
margin-right: 8px;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
/* Buttons */
|
|
76
|
+
.button-container {
|
|
77
|
+
margin-bottom: 16px;
|
|
78
|
+
display: flex;
|
|
79
|
+
justify-content: flex-end;
|
|
80
|
+
padding-right: 12px;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.button {
|
|
84
|
+
padding: 8px 16px;
|
|
85
|
+
border-radius: 6px;
|
|
86
|
+
border: none;
|
|
87
|
+
font-size: 14px;
|
|
88
|
+
font-weight: 500;
|
|
89
|
+
cursor: pointer;
|
|
90
|
+
display: inline-flex;
|
|
91
|
+
align-items: center;
|
|
92
|
+
justify-content: center;
|
|
93
|
+
text-decoration: none;
|
|
94
|
+
margin-right: 8px;
|
|
95
|
+
min-width: 90px;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.button.primary {
|
|
99
|
+
background-color: #f8f9fa;
|
|
100
|
+
color: #3c4043;
|
|
101
|
+
border: 1px solid #dadce0;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.button.primary:hover {
|
|
105
|
+
background-color: #f1f3f4;
|
|
106
|
+
border-color: #dadce0;
|
|
107
|
+
box-shadow: 0 1px 2px 0 rgba(60,64,67,.1);
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.button.default {
|
|
111
|
+
background-color: #f6f8fa;
|
|
112
|
+
color: #24292f;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.button.default:hover {
|
|
116
|
+
background-color: #f3f4f6;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.button.reject {
|
|
120
|
+
background-color: #da3633;
|
|
121
|
+
color: #ffffff;
|
|
122
|
+
border: 1px solid #da3633;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.button.reject:hover {
|
|
126
|
+
background-color: #c73836;
|
|
127
|
+
border-color: #c73836;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
/* Tab selection */
|
|
131
|
+
.tab-section-title {
|
|
132
|
+
padding-left: 12px;
|
|
133
|
+
font-size: 12px;
|
|
134
|
+
font-weight: 400;
|
|
135
|
+
margin-bottom: 12px;
|
|
136
|
+
color: #656d76;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.tab-item {
|
|
140
|
+
display: flex;
|
|
141
|
+
align-items: center;
|
|
142
|
+
padding: 12px;
|
|
143
|
+
margin-bottom: 8px;
|
|
144
|
+
background-color: #ffffff;
|
|
145
|
+
cursor: pointer;
|
|
146
|
+
border-radius: 6px;
|
|
147
|
+
transition: background-color 0.2s ease;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.tab-item:hover {
|
|
151
|
+
background-color: #f8f9fa;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.tab-item.selected {
|
|
155
|
+
background-color: #f6f8fa;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.tab-item.disabled {
|
|
159
|
+
cursor: not-allowed;
|
|
160
|
+
opacity: 0.5;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.tab-radio {
|
|
164
|
+
margin-right: 12px;
|
|
165
|
+
flex-shrink: 0;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.tab-favicon {
|
|
169
|
+
width: 16px;
|
|
170
|
+
height: 16px;
|
|
171
|
+
margin-right: 8px;
|
|
172
|
+
flex-shrink: 0;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.tab-content {
|
|
176
|
+
flex: 1;
|
|
177
|
+
min-width: 0;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.tab-title {
|
|
181
|
+
font-weight: 500;
|
|
182
|
+
color: #1f2328;
|
|
183
|
+
margin-bottom: 2px;
|
|
184
|
+
white-space: nowrap;
|
|
185
|
+
overflow: hidden;
|
|
186
|
+
text-overflow: ellipsis;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.tab-url {
|
|
190
|
+
font-size: 12px;
|
|
191
|
+
color: #656d76;
|
|
192
|
+
white-space: nowrap;
|
|
193
|
+
overflow: hidden;
|
|
194
|
+
text-overflow: ellipsis;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
/* Link-style button */
|
|
198
|
+
.link-button {
|
|
199
|
+
background: none;
|
|
200
|
+
border: none;
|
|
201
|
+
color: #0066cc;
|
|
202
|
+
text-decoration: underline;
|
|
203
|
+
cursor: pointer;
|
|
204
|
+
padding: 0;
|
|
205
|
+
font: inherit;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
/* Auth token section */
|
|
209
|
+
.auth-token-section {
|
|
210
|
+
margin: 16px 0;
|
|
211
|
+
padding: 16px;
|
|
212
|
+
background-color: #f6f8fa;
|
|
213
|
+
border-radius: 6px;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.auth-token-description {
|
|
217
|
+
font-size: 12px;
|
|
218
|
+
color: #656d76;
|
|
219
|
+
margin-bottom: 12px;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.auth-token-container {
|
|
223
|
+
display: flex;
|
|
224
|
+
align-items: center;
|
|
225
|
+
gap: 8px;
|
|
226
|
+
background-color: #ffffff;
|
|
227
|
+
padding: 8px;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.auth-token-code {
|
|
231
|
+
font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
|
|
232
|
+
font-size: 12px;
|
|
233
|
+
color: #1f2328;
|
|
234
|
+
border: none;
|
|
235
|
+
flex: 1;
|
|
236
|
+
padding: 0;
|
|
237
|
+
word-break: break-all;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.auth-token-refresh {
|
|
241
|
+
flex: none;
|
|
242
|
+
height: 24px;
|
|
243
|
+
width: 24px;
|
|
244
|
+
border: none;
|
|
245
|
+
outline: none;
|
|
246
|
+
color: var(--color-fg-muted);
|
|
247
|
+
background: transparent;
|
|
248
|
+
padding: 4px;
|
|
249
|
+
cursor: pointer;
|
|
250
|
+
display: inline-flex;
|
|
251
|
+
align-items: center;
|
|
252
|
+
justify-content: center;
|
|
253
|
+
border-radius: 4px;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.auth-token-refresh svg {
|
|
257
|
+
margin: 0;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.auth-token-refresh:not(:disabled):hover {
|
|
261
|
+
background-color: var(--color-btn-selected-bg);
|
|
262
|
+
}
|
|
263
|
+
/*
|
|
264
|
+
Copyright (c) Microsoft Corporation.
|
|
265
|
+
|
|
266
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
267
|
+
you may not use this file except in compliance with the License.
|
|
268
|
+
You may obtain a copy of the License at
|
|
269
|
+
|
|
270
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
271
|
+
|
|
272
|
+
Unless required by applicable law or agreed to in writing, software
|
|
273
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
274
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
275
|
+
See the License for the specific language governing permissions and
|
|
276
|
+
limitations under the License.
|
|
277
|
+
*/
|
|
278
|
+
|
|
279
|
+
.octicon {
|
|
280
|
+
display: inline-block;
|
|
281
|
+
overflow: visible !important;
|
|
282
|
+
vertical-align: text-bottom;
|
|
283
|
+
fill: currentColor;
|
|
284
|
+
margin-right: 7px;
|
|
285
|
+
flex: none;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.color-icon-success {
|
|
289
|
+
color: var(--color-success-fg) !important;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.color-text-danger {
|
|
293
|
+
color: var(--color-danger-fg) !important;
|
|
294
|
+
}
|
|
295
|
+
/* The MIT License (MIT)
|
|
296
|
+
|
|
297
|
+
Copyright (c) 2021 GitHub Inc.
|
|
298
|
+
|
|
299
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
300
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
301
|
+
in the Software without restriction, including without limitation the rights
|
|
302
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
303
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
304
|
+
furnished to do so, subject to the following conditions:
|
|
305
|
+
|
|
306
|
+
The above copyright notice and this permission notice shall be included in all
|
|
307
|
+
copies or substantial portions of the Software.
|
|
308
|
+
|
|
309
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
310
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
311
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
312
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
313
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
314
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
315
|
+
SOFTWARE. */
|
|
316
|
+
|
|
317
|
+
:root {
|
|
318
|
+
--color-canvas-default-transparent: rgba(255,255,255,0);
|
|
319
|
+
--color-marketing-icon-primary: #218bff;
|
|
320
|
+
--color-marketing-icon-secondary: #54aeff;
|
|
321
|
+
--color-diff-blob-addition-num-text: #24292f;
|
|
322
|
+
--color-diff-blob-addition-fg: #24292f;
|
|
323
|
+
--color-diff-blob-addition-num-bg: #CCFFD8;
|
|
324
|
+
--color-diff-blob-addition-line-bg: #E6FFEC;
|
|
325
|
+
--color-diff-blob-addition-word-bg: #ABF2BC;
|
|
326
|
+
--color-diff-blob-deletion-num-text: #24292f;
|
|
327
|
+
--color-diff-blob-deletion-fg: #24292f;
|
|
328
|
+
--color-diff-blob-deletion-num-bg: #FFD7D5;
|
|
329
|
+
--color-diff-blob-deletion-line-bg: #FFEBE9;
|
|
330
|
+
--color-diff-blob-deletion-word-bg: rgba(255,129,130,0.4);
|
|
331
|
+
--color-diff-blob-hunk-num-bg: rgba(84,174,255,0.4);
|
|
332
|
+
--color-diff-blob-expander-icon: #57606a;
|
|
333
|
+
--color-diff-blob-selected-line-highlight-mix-blend-mode: multiply;
|
|
334
|
+
--color-diffstat-deletion-border: rgba(27,31,36,0.15);
|
|
335
|
+
--color-diffstat-addition-border: rgba(27,31,36,0.15);
|
|
336
|
+
--color-diffstat-addition-bg: #2da44e;
|
|
337
|
+
--color-search-keyword-hl: #fff8c5;
|
|
338
|
+
--color-prettylights-syntax-comment: #6e7781;
|
|
339
|
+
--color-prettylights-syntax-constant: #0550ae;
|
|
340
|
+
--color-prettylights-syntax-entity: #8250df;
|
|
341
|
+
--color-prettylights-syntax-storage-modifier-import: #24292f;
|
|
342
|
+
--color-prettylights-syntax-entity-tag: #116329;
|
|
343
|
+
--color-prettylights-syntax-keyword: #cf222e;
|
|
344
|
+
--color-prettylights-syntax-string: #0a3069;
|
|
345
|
+
--color-prettylights-syntax-variable: #953800;
|
|
346
|
+
--color-prettylights-syntax-brackethighlighter-unmatched: #82071e;
|
|
347
|
+
--color-prettylights-syntax-invalid-illegal-text: #f6f8fa;
|
|
348
|
+
--color-prettylights-syntax-invalid-illegal-bg: #82071e;
|
|
349
|
+
--color-prettylights-syntax-carriage-return-text: #f6f8fa;
|
|
350
|
+
--color-prettylights-syntax-carriage-return-bg: #cf222e;
|
|
351
|
+
--color-prettylights-syntax-string-regexp: #116329;
|
|
352
|
+
--color-prettylights-syntax-markup-list: #3b2300;
|
|
353
|
+
--color-prettylights-syntax-markup-heading: #0550ae;
|
|
354
|
+
--color-prettylights-syntax-markup-italic: #24292f;
|
|
355
|
+
--color-prettylights-syntax-markup-bold: #24292f;
|
|
356
|
+
--color-prettylights-syntax-markup-deleted-text: #82071e;
|
|
357
|
+
--color-prettylights-syntax-markup-deleted-bg: #FFEBE9;
|
|
358
|
+
--color-prettylights-syntax-markup-inserted-text: #116329;
|
|
359
|
+
--color-prettylights-syntax-markup-inserted-bg: #dafbe1;
|
|
360
|
+
--color-prettylights-syntax-markup-changed-text: #953800;
|
|
361
|
+
--color-prettylights-syntax-markup-changed-bg: #ffd8b5;
|
|
362
|
+
--color-prettylights-syntax-markup-ignored-text: #eaeef2;
|
|
363
|
+
--color-prettylights-syntax-markup-ignored-bg: #0550ae;
|
|
364
|
+
--color-prettylights-syntax-meta-diff-range: #8250df;
|
|
365
|
+
--color-prettylights-syntax-brackethighlighter-angle: #57606a;
|
|
366
|
+
--color-prettylights-syntax-sublimelinter-gutter-mark: #8c959f;
|
|
367
|
+
--color-prettylights-syntax-constant-other-reference-link: #0a3069;
|
|
368
|
+
--color-codemirror-text: #24292f;
|
|
369
|
+
--color-codemirror-bg: #ffffff;
|
|
370
|
+
--color-codemirror-gutters-bg: #ffffff;
|
|
371
|
+
--color-codemirror-guttermarker-text: #ffffff;
|
|
372
|
+
--color-codemirror-guttermarker-subtle-text: #6e7781;
|
|
373
|
+
--color-codemirror-linenumber-text: #57606a;
|
|
374
|
+
--color-codemirror-cursor: #24292f;
|
|
375
|
+
--color-codemirror-selection-bg: rgba(84,174,255,0.4);
|
|
376
|
+
--color-codemirror-activeline-bg: rgba(234,238,242,0.5);
|
|
377
|
+
--color-codemirror-matchingbracket-text: #24292f;
|
|
378
|
+
--color-codemirror-lines-bg: #ffffff;
|
|
379
|
+
--color-codemirror-syntax-comment: #24292f;
|
|
380
|
+
--color-codemirror-syntax-constant: #0550ae;
|
|
381
|
+
--color-codemirror-syntax-entity: #8250df;
|
|
382
|
+
--color-codemirror-syntax-keyword: #cf222e;
|
|
383
|
+
--color-codemirror-syntax-storage: #cf222e;
|
|
384
|
+
--color-codemirror-syntax-string: #0a3069;
|
|
385
|
+
--color-codemirror-syntax-support: #0550ae;
|
|
386
|
+
--color-codemirror-syntax-variable: #953800;
|
|
387
|
+
--color-checks-bg: #24292f;
|
|
388
|
+
--color-checks-run-border-width: 0px;
|
|
389
|
+
--color-checks-container-border-width: 0px;
|
|
390
|
+
--color-checks-text-primary: #f6f8fa;
|
|
391
|
+
--color-checks-text-secondary: #8c959f;
|
|
392
|
+
--color-checks-text-link: #54aeff;
|
|
393
|
+
--color-checks-btn-icon: #afb8c1;
|
|
394
|
+
--color-checks-btn-hover-icon: #f6f8fa;
|
|
395
|
+
--color-checks-btn-hover-bg: rgba(255,255,255,0.125);
|
|
396
|
+
--color-checks-input-text: #eaeef2;
|
|
397
|
+
--color-checks-input-placeholder-text: #8c959f;
|
|
398
|
+
--color-checks-input-focus-text: #8c959f;
|
|
399
|
+
--color-checks-input-bg: #32383f;
|
|
400
|
+
--color-checks-input-shadow: none;
|
|
401
|
+
--color-checks-donut-error: #fa4549;
|
|
402
|
+
--color-checks-donut-pending: #bf8700;
|
|
403
|
+
--color-checks-donut-success: #2da44e;
|
|
404
|
+
--color-checks-donut-neutral: #afb8c1;
|
|
405
|
+
--color-checks-dropdown-text: #afb8c1;
|
|
406
|
+
--color-checks-dropdown-bg: #32383f;
|
|
407
|
+
--color-checks-dropdown-border: #424a53;
|
|
408
|
+
--color-checks-dropdown-shadow: rgba(27,31,36,0.3);
|
|
409
|
+
--color-checks-dropdown-hover-text: #f6f8fa;
|
|
410
|
+
--color-checks-dropdown-hover-bg: #424a53;
|
|
411
|
+
--color-checks-dropdown-btn-hover-text: #f6f8fa;
|
|
412
|
+
--color-checks-dropdown-btn-hover-bg: #32383f;
|
|
413
|
+
--color-checks-scrollbar-thumb-bg: #57606a;
|
|
414
|
+
--color-checks-header-label-text: #d0d7de;
|
|
415
|
+
--color-checks-header-label-open-text: #f6f8fa;
|
|
416
|
+
--color-checks-header-border: #32383f;
|
|
417
|
+
--color-checks-header-icon: #8c959f;
|
|
418
|
+
--color-checks-line-text: #d0d7de;
|
|
419
|
+
--color-checks-line-num-text: rgba(140,149,159,0.75);
|
|
420
|
+
--color-checks-line-timestamp-text: #8c959f;
|
|
421
|
+
--color-checks-line-hover-bg: #32383f;
|
|
422
|
+
--color-checks-line-selected-bg: rgba(33,139,255,0.15);
|
|
423
|
+
--color-checks-line-selected-num-text: #54aeff;
|
|
424
|
+
--color-checks-line-dt-fm-text: #24292f;
|
|
425
|
+
--color-checks-line-dt-fm-bg: #9a6700;
|
|
426
|
+
--color-checks-gate-bg: rgba(125,78,0,0.15);
|
|
427
|
+
--color-checks-gate-text: #d0d7de;
|
|
428
|
+
--color-checks-gate-waiting-text: #afb8c1;
|
|
429
|
+
--color-checks-step-header-open-bg: #32383f;
|
|
430
|
+
--color-checks-step-error-text: #ff8182;
|
|
431
|
+
--color-checks-step-warning-text: #d4a72c;
|
|
432
|
+
--color-checks-logline-text: #8c959f;
|
|
433
|
+
--color-checks-logline-num-text: rgba(140,149,159,0.75);
|
|
434
|
+
--color-checks-logline-debug-text: #c297ff;
|
|
435
|
+
--color-checks-logline-error-text: #d0d7de;
|
|
436
|
+
--color-checks-logline-error-num-text: #ff8182;
|
|
437
|
+
--color-checks-logline-error-bg: rgba(164,14,38,0.15);
|
|
438
|
+
--color-checks-logline-warning-text: #d0d7de;
|
|
439
|
+
--color-checks-logline-warning-num-text: #d4a72c;
|
|
440
|
+
--color-checks-logline-warning-bg: rgba(125,78,0,0.15);
|
|
441
|
+
--color-checks-logline-command-text: #54aeff;
|
|
442
|
+
--color-checks-logline-section-text: #4ac26b;
|
|
443
|
+
--color-checks-ansi-black: #24292f;
|
|
444
|
+
--color-checks-ansi-black-bright: #32383f;
|
|
445
|
+
--color-checks-ansi-white: #d0d7de;
|
|
446
|
+
--color-checks-ansi-white-bright: #d0d7de;
|
|
447
|
+
--color-checks-ansi-gray: #8c959f;
|
|
448
|
+
--color-checks-ansi-red: #ff8182;
|
|
449
|
+
--color-checks-ansi-red-bright: #ffaba8;
|
|
450
|
+
--color-checks-ansi-green: #4ac26b;
|
|
451
|
+
--color-checks-ansi-green-bright: #6fdd8b;
|
|
452
|
+
--color-checks-ansi-yellow: #d4a72c;
|
|
453
|
+
--color-checks-ansi-yellow-bright: #eac54f;
|
|
454
|
+
--color-checks-ansi-blue: #54aeff;
|
|
455
|
+
--color-checks-ansi-blue-bright: #80ccff;
|
|
456
|
+
--color-checks-ansi-magenta: #c297ff;
|
|
457
|
+
--color-checks-ansi-magenta-bright: #d8b9ff;
|
|
458
|
+
--color-checks-ansi-cyan: #76e3ea;
|
|
459
|
+
--color-checks-ansi-cyan-bright: #b3f0ff;
|
|
460
|
+
--color-project-header-bg: #24292f;
|
|
461
|
+
--color-project-sidebar-bg: #ffffff;
|
|
462
|
+
--color-project-gradient-in: #ffffff;
|
|
463
|
+
--color-project-gradient-out: rgba(255,255,255,0);
|
|
464
|
+
--color-mktg-success: rgba(36,146,67,1);
|
|
465
|
+
--color-mktg-info: rgba(19,119,234,1);
|
|
466
|
+
--color-mktg-bg-shade-gradient-top: rgba(27,31,36,0.065);
|
|
467
|
+
--color-mktg-bg-shade-gradient-bottom: rgba(27,31,36,0);
|
|
468
|
+
--color-mktg-btn-bg-top: hsla(228,82%,66%,1);
|
|
469
|
+
--color-mktg-btn-bg-bottom: #4969ed;
|
|
470
|
+
--color-mktg-btn-bg-overlay-top: hsla(228,74%,59%,1);
|
|
471
|
+
--color-mktg-btn-bg-overlay-bottom: #3355e0;
|
|
472
|
+
--color-mktg-btn-text: #ffffff;
|
|
473
|
+
--color-mktg-btn-primary-bg-top: hsla(137,56%,46%,1);
|
|
474
|
+
--color-mktg-btn-primary-bg-bottom: #2ea44f;
|
|
475
|
+
--color-mktg-btn-primary-bg-overlay-top: hsla(134,60%,38%,1);
|
|
476
|
+
--color-mktg-btn-primary-bg-overlay-bottom: #22863a;
|
|
477
|
+
--color-mktg-btn-primary-text: #ffffff;
|
|
478
|
+
--color-mktg-btn-enterprise-bg-top: hsla(249,100%,72%,1);
|
|
479
|
+
--color-mktg-btn-enterprise-bg-bottom: #6f57ff;
|
|
480
|
+
--color-mktg-btn-enterprise-bg-overlay-top: hsla(248,65%,63%,1);
|
|
481
|
+
--color-mktg-btn-enterprise-bg-overlay-bottom: #614eda;
|
|
482
|
+
--color-mktg-btn-enterprise-text: #ffffff;
|
|
483
|
+
--color-mktg-btn-outline-text: #4969ed;
|
|
484
|
+
--color-mktg-btn-outline-border: rgba(73,105,237,0.3);
|
|
485
|
+
--color-mktg-btn-outline-hover-text: #3355e0;
|
|
486
|
+
--color-mktg-btn-outline-hover-border: rgba(51,85,224,0.5);
|
|
487
|
+
--color-mktg-btn-outline-focus-border: #4969ed;
|
|
488
|
+
--color-mktg-btn-outline-focus-border-inset: rgba(73,105,237,0.5);
|
|
489
|
+
--color-mktg-btn-dark-text: #ffffff;
|
|
490
|
+
--color-mktg-btn-dark-border: rgba(255,255,255,0.3);
|
|
491
|
+
--color-mktg-btn-dark-hover-text: #ffffff;
|
|
492
|
+
--color-mktg-btn-dark-hover-border: rgba(255,255,255,0.5);
|
|
493
|
+
--color-mktg-btn-dark-focus-border: #ffffff;
|
|
494
|
+
--color-mktg-btn-dark-focus-border-inset: rgba(255,255,255,0.5);
|
|
495
|
+
--color-avatar-bg: #ffffff;
|
|
496
|
+
--color-avatar-border: rgba(27,31,36,0.15);
|
|
497
|
+
--color-avatar-stack-fade: #afb8c1;
|
|
498
|
+
--color-avatar-stack-fade-more: #d0d7de;
|
|
499
|
+
--color-avatar-child-shadow: -2px -2px 0 rgba(255,255,255,0.8);
|
|
500
|
+
--color-topic-tag-border: rgba(0,0,0,0);
|
|
501
|
+
--color-select-menu-backdrop-border: rgba(0,0,0,0);
|
|
502
|
+
--color-select-menu-tap-highlight: rgba(175,184,193,0.5);
|
|
503
|
+
--color-select-menu-tap-focus-bg: #b6e3ff;
|
|
504
|
+
--color-overlay-shadow: 0 1px 3px rgba(27,31,36,0.12), 0 8px 24px rgba(66,74,83,0.12);
|
|
505
|
+
--color-header-text: rgba(255,255,255,0.7);
|
|
506
|
+
--color-header-bg: #24292f;
|
|
507
|
+
--color-header-logo: #ffffff;
|
|
508
|
+
--color-header-search-bg: #24292f;
|
|
509
|
+
--color-header-search-border: #57606a;
|
|
510
|
+
--color-sidenav-selected-bg: #ffffff;
|
|
511
|
+
--color-menu-bg-active: rgba(0,0,0,0);
|
|
512
|
+
--color-control-transparent-bg-hover: #818b981a;
|
|
513
|
+
--color-input-disabled-bg: rgba(175,184,193,0.2);
|
|
514
|
+
--color-timeline-badge-bg: #eaeef2;
|
|
515
|
+
--color-ansi-black: #24292f;
|
|
516
|
+
--color-ansi-black-bright: #57606a;
|
|
517
|
+
--color-ansi-white: #6e7781;
|
|
518
|
+
--color-ansi-white-bright: #8c959f;
|
|
519
|
+
--color-ansi-gray: #6e7781;
|
|
520
|
+
--color-ansi-red: #cf222e;
|
|
521
|
+
--color-ansi-red-bright: #a40e26;
|
|
522
|
+
--color-ansi-green: #116329;
|
|
523
|
+
--color-ansi-green-bright: #1a7f37;
|
|
524
|
+
--color-ansi-yellow: #4d2d00;
|
|
525
|
+
--color-ansi-yellow-bright: #633c01;
|
|
526
|
+
--color-ansi-blue: #0969da;
|
|
527
|
+
--color-ansi-blue-bright: #218bff;
|
|
528
|
+
--color-ansi-magenta: #8250df;
|
|
529
|
+
--color-ansi-magenta-bright: #a475f9;
|
|
530
|
+
--color-ansi-cyan: #1b7c83;
|
|
531
|
+
--color-ansi-cyan-bright: #3192aa;
|
|
532
|
+
--color-btn-text: #24292f;
|
|
533
|
+
--color-btn-bg: #f6f8fa;
|
|
534
|
+
--color-btn-border: rgba(27,31,36,0.15);
|
|
535
|
+
--color-btn-shadow: 0 1px 0 rgba(27,31,36,0.04);
|
|
536
|
+
--color-btn-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
|
|
537
|
+
--color-btn-hover-bg: #f3f4f6;
|
|
538
|
+
--color-btn-hover-border: rgba(27,31,36,0.15);
|
|
539
|
+
--color-btn-active-bg: hsla(220,14%,93%,1);
|
|
540
|
+
--color-btn-active-border: rgba(27,31,36,0.15);
|
|
541
|
+
--color-btn-selected-bg: hsla(220,14%,94%,1);
|
|
542
|
+
--color-btn-focus-bg: #f6f8fa;
|
|
543
|
+
--color-btn-focus-border: rgba(27,31,36,0.15);
|
|
544
|
+
--color-btn-focus-shadow: 0 0 0 3px rgba(9,105,218,0.3);
|
|
545
|
+
--color-btn-shadow-active: inset 0 0.15em 0.3em rgba(27,31,36,0.15);
|
|
546
|
+
--color-btn-shadow-input-focus: 0 0 0 0.2em rgba(9,105,218,0.3);
|
|
547
|
+
--color-btn-counter-bg: rgba(27,31,36,0.08);
|
|
548
|
+
--color-btn-primary-text: #ffffff;
|
|
549
|
+
--color-btn-primary-bg: #2da44e;
|
|
550
|
+
--color-btn-primary-border: rgba(27,31,36,0.15);
|
|
551
|
+
--color-btn-primary-shadow: 0 1px 0 rgba(27,31,36,0.1);
|
|
552
|
+
--color-btn-primary-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
|
|
553
|
+
--color-btn-primary-hover-bg: #2c974b;
|
|
554
|
+
--color-btn-primary-hover-border: rgba(27,31,36,0.15);
|
|
555
|
+
--color-btn-primary-selected-bg: hsla(137,55%,36%,1);
|
|
556
|
+
--color-btn-primary-selected-shadow: inset 0 1px 0 rgba(0,45,17,0.2);
|
|
557
|
+
--color-btn-primary-disabled-text: rgba(255,255,255,0.8);
|
|
558
|
+
--color-btn-primary-disabled-bg: #94d3a2;
|
|
559
|
+
--color-btn-primary-disabled-border: rgba(27,31,36,0.15);
|
|
560
|
+
--color-btn-primary-focus-bg: #2da44e;
|
|
561
|
+
--color-btn-primary-focus-border: rgba(27,31,36,0.15);
|
|
562
|
+
--color-btn-primary-focus-shadow: 0 0 0 3px rgba(45,164,78,0.4);
|
|
563
|
+
--color-btn-primary-icon: rgba(255,255,255,0.8);
|
|
564
|
+
--color-btn-primary-counter-bg: rgba(255,255,255,0.2);
|
|
565
|
+
--color-btn-outline-text: #0969da;
|
|
566
|
+
--color-btn-outline-hover-text: #ffffff;
|
|
567
|
+
--color-btn-outline-hover-bg: #0969da;
|
|
568
|
+
--color-btn-outline-hover-border: rgba(27,31,36,0.15);
|
|
569
|
+
--color-btn-outline-hover-shadow: 0 1px 0 rgba(27,31,36,0.1);
|
|
570
|
+
--color-btn-outline-hover-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
|
|
571
|
+
--color-btn-outline-hover-counter-bg: rgba(255,255,255,0.2);
|
|
572
|
+
--color-btn-outline-selected-text: #ffffff;
|
|
573
|
+
--color-btn-outline-selected-bg: hsla(212,92%,42%,1);
|
|
574
|
+
--color-btn-outline-selected-border: rgba(27,31,36,0.15);
|
|
575
|
+
--color-btn-outline-selected-shadow: inset 0 1px 0 rgba(0,33,85,0.2);
|
|
576
|
+
--color-btn-outline-disabled-text: rgba(9,105,218,0.5);
|
|
577
|
+
--color-btn-outline-disabled-bg: #f6f8fa;
|
|
578
|
+
--color-btn-outline-disabled-counter-bg: rgba(9,105,218,0.05);
|
|
579
|
+
--color-btn-outline-focus-border: rgba(27,31,36,0.15);
|
|
580
|
+
--color-btn-outline-focus-shadow: 0 0 0 3px rgba(5,80,174,0.4);
|
|
581
|
+
--color-btn-outline-counter-bg: rgba(9,105,218,0.1);
|
|
582
|
+
--color-btn-danger-text: #cf222e;
|
|
583
|
+
--color-btn-danger-hover-text: #ffffff;
|
|
584
|
+
--color-btn-danger-hover-bg: #a40e26;
|
|
585
|
+
--color-btn-danger-hover-border: rgba(27,31,36,0.15);
|
|
586
|
+
--color-btn-danger-hover-shadow: 0 1px 0 rgba(27,31,36,0.1);
|
|
587
|
+
--color-btn-danger-hover-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
|
|
588
|
+
--color-btn-danger-hover-counter-bg: rgba(255,255,255,0.2);
|
|
589
|
+
--color-btn-danger-selected-text: #ffffff;
|
|
590
|
+
--color-btn-danger-selected-bg: hsla(356,72%,44%,1);
|
|
591
|
+
--color-btn-danger-selected-border: rgba(27,31,36,0.15);
|
|
592
|
+
--color-btn-danger-selected-shadow: inset 0 1px 0 rgba(76,0,20,0.2);
|
|
593
|
+
--color-btn-danger-disabled-text: rgba(207,34,46,0.5);
|
|
594
|
+
--color-btn-danger-disabled-bg: #f6f8fa;
|
|
595
|
+
--color-btn-danger-disabled-counter-bg: rgba(207,34,46,0.05);
|
|
596
|
+
--color-btn-danger-focus-border: rgba(27,31,36,0.15);
|
|
597
|
+
--color-btn-danger-focus-shadow: 0 0 0 3px rgba(164,14,38,0.4);
|
|
598
|
+
--color-btn-danger-counter-bg: rgba(207,34,46,0.1);
|
|
599
|
+
--color-btn-danger-icon: #cf222e;
|
|
600
|
+
--color-btn-danger-hover-icon: #ffffff;
|
|
601
|
+
--color-underlinenav-icon: #6e7781;
|
|
602
|
+
--color-underlinenav-border-hover: rgba(175,184,193,0.2);
|
|
603
|
+
--color-fg-default: #24292f;
|
|
604
|
+
--color-fg-muted: #57606a;
|
|
605
|
+
--color-fg-subtle: #6e7781;
|
|
606
|
+
--color-fg-on-emphasis: #ffffff;
|
|
607
|
+
--color-canvas-default: #ffffff;
|
|
608
|
+
--color-canvas-overlay: #ffffff;
|
|
609
|
+
--color-canvas-inset: #f6f8fa;
|
|
610
|
+
--color-canvas-subtle: #f6f8fa;
|
|
611
|
+
--color-border-default: #d0d7de;
|
|
612
|
+
--color-border-muted: hsla(210,18%,87%,1);
|
|
613
|
+
--color-border-subtle: rgba(27,31,36,0.15);
|
|
614
|
+
--color-shadow-small: 0 1px 0 rgba(27,31,36,0.04);
|
|
615
|
+
--color-shadow-medium: 0 3px 6px rgba(140,149,159,0.15);
|
|
616
|
+
--color-shadow-large: 0 8px 24px rgba(140,149,159,0.2);
|
|
617
|
+
--color-shadow-extra-large: 0 12px 28px rgba(140,149,159,0.3);
|
|
618
|
+
--color-neutral-emphasis-plus: #24292f;
|
|
619
|
+
--color-neutral-emphasis: #6e7781;
|
|
620
|
+
--color-neutral-muted: rgba(175,184,193,0.2);
|
|
621
|
+
--color-neutral-subtle: rgba(234,238,242,0.5);
|
|
622
|
+
--color-accent-fg: #0969da;
|
|
623
|
+
--color-accent-emphasis: #0969da;
|
|
624
|
+
--color-accent-muted: rgba(84,174,255,0.4);
|
|
625
|
+
--color-accent-subtle: #ddf4ff;
|
|
626
|
+
--color-success-fg: #1a7f37;
|
|
627
|
+
--color-success-emphasis: #2da44e;
|
|
628
|
+
--color-success-muted: rgba(74,194,107,0.4);
|
|
629
|
+
--color-success-subtle: #dafbe1;
|
|
630
|
+
--color-attention-fg: #9a6700;
|
|
631
|
+
--color-attention-emphasis: #bf8700;
|
|
632
|
+
--color-attention-muted: rgba(212,167,44,0.4);
|
|
633
|
+
--color-attention-subtle: #fff8c5;
|
|
634
|
+
--color-severe-fg: #bc4c00;
|
|
635
|
+
--color-severe-emphasis: #bc4c00;
|
|
636
|
+
--color-severe-muted: rgba(251,143,68,0.4);
|
|
637
|
+
--color-severe-subtle: #fff1e5;
|
|
638
|
+
--color-danger-fg: #cf222e;
|
|
639
|
+
--color-danger-emphasis: #cf222e;
|
|
640
|
+
--color-danger-muted: rgba(255,129,130,0.4);
|
|
641
|
+
--color-danger-subtle: #FFEBE9;
|
|
642
|
+
--color-done-fg: #8250df;
|
|
643
|
+
--color-done-emphasis: #8250df;
|
|
644
|
+
--color-done-muted: rgba(194,151,255,0.4);
|
|
645
|
+
--color-done-subtle: #fbefff;
|
|
646
|
+
--color-sponsors-fg: #bf3989;
|
|
647
|
+
--color-sponsors-emphasis: #bf3989;
|
|
648
|
+
--color-sponsors-muted: rgba(255,128,200,0.4);
|
|
649
|
+
--color-sponsors-subtle: #ffeff7;
|
|
650
|
+
--color-primer-canvas-backdrop: rgba(27,31,36,0.5);
|
|
651
|
+
--color-primer-canvas-sticky: rgba(255,255,255,0.95);
|
|
652
|
+
--color-primer-border-active: #FD8C73;
|
|
653
|
+
--color-primer-border-contrast: rgba(27,31,36,0.1);
|
|
654
|
+
--color-primer-shadow-highlight: inset 0 1px 0 rgba(255,255,255,0.25);
|
|
655
|
+
--color-primer-shadow-inset: inset 0 1px 0 rgba(208,215,222,0.2);
|
|
656
|
+
--color-primer-shadow-focus: 0 0 0 3px rgba(9,105,218,0.3);
|
|
657
|
+
--color-scale-black: #1b1f24;
|
|
658
|
+
--color-scale-white: #ffffff;
|
|
659
|
+
--color-scale-gray-0: #f6f8fa;
|
|
660
|
+
--color-scale-gray-1: #eaeef2;
|
|
661
|
+
--color-scale-gray-2: #d0d7de;
|
|
662
|
+
--color-scale-gray-3: #afb8c1;
|
|
663
|
+
--color-scale-gray-4: #8c959f;
|
|
664
|
+
--color-scale-gray-5: #6e7781;
|
|
665
|
+
--color-scale-gray-6: #57606a;
|
|
666
|
+
--color-scale-gray-7: #424a53;
|
|
667
|
+
--color-scale-gray-8: #32383f;
|
|
668
|
+
--color-scale-gray-9: #24292f;
|
|
669
|
+
--color-scale-blue-0: #ddf4ff;
|
|
670
|
+
--color-scale-blue-1: #b6e3ff;
|
|
671
|
+
--color-scale-blue-2: #80ccff;
|
|
672
|
+
--color-scale-blue-3: #54aeff;
|
|
673
|
+
--color-scale-blue-4: #218bff;
|
|
674
|
+
--color-scale-blue-5: #0969da;
|
|
675
|
+
--color-scale-blue-6: #0550ae;
|
|
676
|
+
--color-scale-blue-7: #033d8b;
|
|
677
|
+
--color-scale-blue-8: #0a3069;
|
|
678
|
+
--color-scale-blue-9: #002155;
|
|
679
|
+
--color-scale-green-0: #dafbe1;
|
|
680
|
+
--color-scale-green-1: #aceebb;
|
|
681
|
+
--color-scale-green-2: #6fdd8b;
|
|
682
|
+
--color-scale-green-3: #4ac26b;
|
|
683
|
+
--color-scale-green-4: #2da44e;
|
|
684
|
+
--color-scale-green-5: #1a7f37;
|
|
685
|
+
--color-scale-green-6: #116329;
|
|
686
|
+
--color-scale-green-7: #044f1e;
|
|
687
|
+
--color-scale-green-8: #003d16;
|
|
688
|
+
--color-scale-green-9: #002d11;
|
|
689
|
+
--color-scale-yellow-0: #fff8c5;
|
|
690
|
+
--color-scale-yellow-1: #fae17d;
|
|
691
|
+
--color-scale-yellow-2: #eac54f;
|
|
692
|
+
--color-scale-yellow-3: #d4a72c;
|
|
693
|
+
--color-scale-yellow-4: #bf8700;
|
|
694
|
+
--color-scale-yellow-5: #9a6700;
|
|
695
|
+
--color-scale-yellow-6: #7d4e00;
|
|
696
|
+
--color-scale-yellow-7: #633c01;
|
|
697
|
+
--color-scale-yellow-8: #4d2d00;
|
|
698
|
+
--color-scale-yellow-9: #3b2300;
|
|
699
|
+
--color-scale-orange-0: #fff1e5;
|
|
700
|
+
--color-scale-orange-1: #ffd8b5;
|
|
701
|
+
--color-scale-orange-2: #ffb77c;
|
|
702
|
+
--color-scale-orange-3: #fb8f44;
|
|
703
|
+
--color-scale-orange-4: #e16f24;
|
|
704
|
+
--color-scale-orange-5: #bc4c00;
|
|
705
|
+
--color-scale-orange-6: #953800;
|
|
706
|
+
--color-scale-orange-7: #762c00;
|
|
707
|
+
--color-scale-orange-8: #5c2200;
|
|
708
|
+
--color-scale-orange-9: #471700;
|
|
709
|
+
--color-scale-red-0: #FFEBE9;
|
|
710
|
+
--color-scale-red-1: #ffcecb;
|
|
711
|
+
--color-scale-red-2: #ffaba8;
|
|
712
|
+
--color-scale-red-3: #ff8182;
|
|
713
|
+
--color-scale-red-4: #fa4549;
|
|
714
|
+
--color-scale-red-5: #cf222e;
|
|
715
|
+
--color-scale-red-6: #a40e26;
|
|
716
|
+
--color-scale-red-7: #82071e;
|
|
717
|
+
--color-scale-red-8: #660018;
|
|
718
|
+
--color-scale-red-9: #4c0014;
|
|
719
|
+
--color-scale-purple-0: #fbefff;
|
|
720
|
+
--color-scale-purple-1: #ecd8ff;
|
|
721
|
+
--color-scale-purple-2: #d8b9ff;
|
|
722
|
+
--color-scale-purple-3: #c297ff;
|
|
723
|
+
--color-scale-purple-4: #a475f9;
|
|
724
|
+
--color-scale-purple-5: #8250df;
|
|
725
|
+
--color-scale-purple-6: #6639ba;
|
|
726
|
+
--color-scale-purple-7: #512a97;
|
|
727
|
+
--color-scale-purple-8: #3e1f79;
|
|
728
|
+
--color-scale-purple-9: #2e1461;
|
|
729
|
+
--color-scale-pink-0: #ffeff7;
|
|
730
|
+
--color-scale-pink-1: #ffd3eb;
|
|
731
|
+
--color-scale-pink-2: #ffadda;
|
|
732
|
+
--color-scale-pink-3: #ff80c8;
|
|
733
|
+
--color-scale-pink-4: #e85aad;
|
|
734
|
+
--color-scale-pink-5: #bf3989;
|
|
735
|
+
--color-scale-pink-6: #99286e;
|
|
736
|
+
--color-scale-pink-7: #772057;
|
|
737
|
+
--color-scale-pink-8: #611347;
|
|
738
|
+
--color-scale-pink-9: #4d0336;
|
|
739
|
+
--color-scale-coral-0: #FFF0EB;
|
|
740
|
+
--color-scale-coral-1: #FFD6CC;
|
|
741
|
+
--color-scale-coral-2: #FFB4A1;
|
|
742
|
+
--color-scale-coral-3: #FD8C73;
|
|
743
|
+
--color-scale-coral-4: #EC6547;
|
|
744
|
+
--color-scale-coral-5: #C4432B;
|
|
745
|
+
--color-scale-coral-6: #9E2F1C;
|
|
746
|
+
--color-scale-coral-7: #801F0F;
|
|
747
|
+
--color-scale-coral-8: #691105;
|
|
748
|
+
--color-scale-coral-9: #510901
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
@media(prefers-color-scheme: dark) {
|
|
752
|
+
:root {
|
|
753
|
+
--color-canvas-default-transparent: rgba(13,17,23,0);
|
|
754
|
+
--color-marketing-icon-primary: #79c0ff;
|
|
755
|
+
--color-marketing-icon-secondary: #1f6feb;
|
|
756
|
+
--color-diff-blob-addition-num-text: #c9d1d9;
|
|
757
|
+
--color-diff-blob-addition-fg: #c9d1d9;
|
|
758
|
+
--color-diff-blob-addition-num-bg: rgba(63,185,80,0.3);
|
|
759
|
+
--color-diff-blob-addition-line-bg: rgba(46,160,67,0.15);
|
|
760
|
+
--color-diff-blob-addition-word-bg: rgba(46,160,67,0.4);
|
|
761
|
+
--color-diff-blob-deletion-num-text: #c9d1d9;
|
|
762
|
+
--color-diff-blob-deletion-fg: #c9d1d9;
|
|
763
|
+
--color-diff-blob-deletion-num-bg: rgba(248,81,73,0.3);
|
|
764
|
+
--color-diff-blob-deletion-line-bg: rgba(248,81,73,0.15);
|
|
765
|
+
--color-diff-blob-deletion-word-bg: rgba(248,81,73,0.4);
|
|
766
|
+
--color-diff-blob-hunk-num-bg: rgba(56,139,253,0.4);
|
|
767
|
+
--color-diff-blob-expander-icon: #8b949e;
|
|
768
|
+
--color-diff-blob-selected-line-highlight-mix-blend-mode: screen;
|
|
769
|
+
--color-diffstat-deletion-border: rgba(240,246,252,0.1);
|
|
770
|
+
--color-diffstat-addition-border: rgba(240,246,252,0.1);
|
|
771
|
+
--color-diffstat-addition-bg: #3fb950;
|
|
772
|
+
--color-search-keyword-hl: rgba(210,153,34,0.4);
|
|
773
|
+
--color-prettylights-syntax-comment: #8b949e;
|
|
774
|
+
--color-prettylights-syntax-constant: #79c0ff;
|
|
775
|
+
--color-prettylights-syntax-entity: #d2a8ff;
|
|
776
|
+
--color-prettylights-syntax-storage-modifier-import: #c9d1d9;
|
|
777
|
+
--color-prettylights-syntax-entity-tag: #7ee787;
|
|
778
|
+
--color-prettylights-syntax-keyword: #ff7b72;
|
|
779
|
+
--color-prettylights-syntax-string: #a5d6ff;
|
|
780
|
+
--color-prettylights-syntax-variable: #ffa657;
|
|
781
|
+
--color-prettylights-syntax-brackethighlighter-unmatched: #f85149;
|
|
782
|
+
--color-prettylights-syntax-invalid-illegal-text: #f0f6fc;
|
|
783
|
+
--color-prettylights-syntax-invalid-illegal-bg: #8e1519;
|
|
784
|
+
--color-prettylights-syntax-carriage-return-text: #f0f6fc;
|
|
785
|
+
--color-prettylights-syntax-carriage-return-bg: #b62324;
|
|
786
|
+
--color-prettylights-syntax-string-regexp: #7ee787;
|
|
787
|
+
--color-prettylights-syntax-markup-list: #f2cc60;
|
|
788
|
+
--color-prettylights-syntax-markup-heading: #1f6feb;
|
|
789
|
+
--color-prettylights-syntax-markup-italic: #c9d1d9;
|
|
790
|
+
--color-prettylights-syntax-markup-bold: #c9d1d9;
|
|
791
|
+
--color-prettylights-syntax-markup-deleted-text: #ffdcd7;
|
|
792
|
+
--color-prettylights-syntax-markup-deleted-bg: #67060c;
|
|
793
|
+
--color-prettylights-syntax-markup-inserted-text: #aff5b4;
|
|
794
|
+
--color-prettylights-syntax-markup-inserted-bg: #033a16;
|
|
795
|
+
--color-prettylights-syntax-markup-changed-text: #ffdfb6;
|
|
796
|
+
--color-prettylights-syntax-markup-changed-bg: #5a1e02;
|
|
797
|
+
--color-prettylights-syntax-markup-ignored-text: #c9d1d9;
|
|
798
|
+
--color-prettylights-syntax-markup-ignored-bg: #1158c7;
|
|
799
|
+
--color-prettylights-syntax-meta-diff-range: #d2a8ff;
|
|
800
|
+
--color-prettylights-syntax-brackethighlighter-angle: #8b949e;
|
|
801
|
+
--color-prettylights-syntax-sublimelinter-gutter-mark: #484f58;
|
|
802
|
+
--color-prettylights-syntax-constant-other-reference-link: #a5d6ff;
|
|
803
|
+
--color-codemirror-text: #c9d1d9;
|
|
804
|
+
--color-codemirror-bg: #0d1117;
|
|
805
|
+
--color-codemirror-gutters-bg: #0d1117;
|
|
806
|
+
--color-codemirror-guttermarker-text: #0d1117;
|
|
807
|
+
--color-codemirror-guttermarker-subtle-text: #484f58;
|
|
808
|
+
--color-codemirror-linenumber-text: #8b949e;
|
|
809
|
+
--color-codemirror-cursor: #c9d1d9;
|
|
810
|
+
--color-codemirror-selection-bg: rgba(56,139,253,0.4);
|
|
811
|
+
--color-codemirror-activeline-bg: rgba(110,118,129,0.1);
|
|
812
|
+
--color-codemirror-matchingbracket-text: #c9d1d9;
|
|
813
|
+
--color-codemirror-lines-bg: #0d1117;
|
|
814
|
+
--color-codemirror-syntax-comment: #8b949e;
|
|
815
|
+
--color-codemirror-syntax-constant: #79c0ff;
|
|
816
|
+
--color-codemirror-syntax-entity: #d2a8ff;
|
|
817
|
+
--color-codemirror-syntax-keyword: #ff7b72;
|
|
818
|
+
--color-codemirror-syntax-storage: #ff7b72;
|
|
819
|
+
--color-codemirror-syntax-string: #a5d6ff;
|
|
820
|
+
--color-codemirror-syntax-support: #79c0ff;
|
|
821
|
+
--color-codemirror-syntax-variable: #ffa657;
|
|
822
|
+
--color-checks-bg: #010409;
|
|
823
|
+
--color-checks-run-border-width: 1px;
|
|
824
|
+
--color-checks-container-border-width: 1px;
|
|
825
|
+
--color-checks-text-primary: #c9d1d9;
|
|
826
|
+
--color-checks-text-secondary: #8b949e;
|
|
827
|
+
--color-checks-text-link: #58a6ff;
|
|
828
|
+
--color-checks-btn-icon: #8b949e;
|
|
829
|
+
--color-checks-btn-hover-icon: #c9d1d9;
|
|
830
|
+
--color-checks-btn-hover-bg: rgba(110,118,129,0.1);
|
|
831
|
+
--color-checks-input-text: #8b949e;
|
|
832
|
+
--color-checks-input-placeholder-text: #484f58;
|
|
833
|
+
--color-checks-input-focus-text: #c9d1d9;
|
|
834
|
+
--color-checks-input-bg: #161b22;
|
|
835
|
+
--color-checks-input-shadow: none;
|
|
836
|
+
--color-checks-donut-error: #f85149;
|
|
837
|
+
--color-checks-donut-pending: #d29922;
|
|
838
|
+
--color-checks-donut-success: #2ea043;
|
|
839
|
+
--color-checks-donut-neutral: #8b949e;
|
|
840
|
+
--color-checks-dropdown-text: #c9d1d9;
|
|
841
|
+
--color-checks-dropdown-bg: #161b22;
|
|
842
|
+
--color-checks-dropdown-border: #30363d;
|
|
843
|
+
--color-checks-dropdown-shadow: rgba(1,4,9,0.3);
|
|
844
|
+
--color-checks-dropdown-hover-text: #c9d1d9;
|
|
845
|
+
--color-checks-dropdown-hover-bg: rgba(110,118,129,0.1);
|
|
846
|
+
--color-checks-dropdown-btn-hover-text: #c9d1d9;
|
|
847
|
+
--color-checks-dropdown-btn-hover-bg: rgba(110,118,129,0.1);
|
|
848
|
+
--color-checks-scrollbar-thumb-bg: rgba(110,118,129,0.4);
|
|
849
|
+
--color-checks-header-label-text: #8b949e;
|
|
850
|
+
--color-checks-header-label-open-text: #c9d1d9;
|
|
851
|
+
--color-checks-header-border: #21262d;
|
|
852
|
+
--color-checks-header-icon: #8b949e;
|
|
853
|
+
--color-checks-line-text: #8b949e;
|
|
854
|
+
--color-checks-line-num-text: #484f58;
|
|
855
|
+
--color-checks-line-timestamp-text: #484f58;
|
|
856
|
+
--color-checks-line-hover-bg: rgba(110,118,129,0.1);
|
|
857
|
+
--color-checks-line-selected-bg: rgba(56,139,253,0.15);
|
|
858
|
+
--color-checks-line-selected-num-text: #58a6ff;
|
|
859
|
+
--color-checks-line-dt-fm-text: #f0f6fc;
|
|
860
|
+
--color-checks-line-dt-fm-bg: #9e6a03;
|
|
861
|
+
--color-checks-gate-bg: rgba(187,128,9,0.15);
|
|
862
|
+
--color-checks-gate-text: #8b949e;
|
|
863
|
+
--color-checks-gate-waiting-text: #d29922;
|
|
864
|
+
--color-checks-step-header-open-bg: #161b22;
|
|
865
|
+
--color-checks-step-error-text: #f85149;
|
|
866
|
+
--color-checks-step-warning-text: #d29922;
|
|
867
|
+
--color-checks-logline-text: #8b949e;
|
|
868
|
+
--color-checks-logline-num-text: #484f58;
|
|
869
|
+
--color-checks-logline-debug-text: #a371f7;
|
|
870
|
+
--color-checks-logline-error-text: #8b949e;
|
|
871
|
+
--color-checks-logline-error-num-text: #484f58;
|
|
872
|
+
--color-checks-logline-error-bg: rgba(248,81,73,0.15);
|
|
873
|
+
--color-checks-logline-warning-text: #8b949e;
|
|
874
|
+
--color-checks-logline-warning-num-text: #d29922;
|
|
875
|
+
--color-checks-logline-warning-bg: rgba(187,128,9,0.15);
|
|
876
|
+
--color-checks-logline-command-text: #58a6ff;
|
|
877
|
+
--color-checks-logline-section-text: #3fb950;
|
|
878
|
+
--color-checks-ansi-black: #0d1117;
|
|
879
|
+
--color-checks-ansi-black-bright: #161b22;
|
|
880
|
+
--color-checks-ansi-white: #b1bac4;
|
|
881
|
+
--color-checks-ansi-white-bright: #b1bac4;
|
|
882
|
+
--color-checks-ansi-gray: #6e7681;
|
|
883
|
+
--color-checks-ansi-red: #ff7b72;
|
|
884
|
+
--color-checks-ansi-red-bright: #ffa198;
|
|
885
|
+
--color-checks-ansi-green: #3fb950;
|
|
886
|
+
--color-checks-ansi-green-bright: #56d364;
|
|
887
|
+
--color-checks-ansi-yellow: #d29922;
|
|
888
|
+
--color-checks-ansi-yellow-bright: #e3b341;
|
|
889
|
+
--color-checks-ansi-blue: #58a6ff;
|
|
890
|
+
--color-checks-ansi-blue-bright: #79c0ff;
|
|
891
|
+
--color-checks-ansi-magenta: #bc8cff;
|
|
892
|
+
--color-checks-ansi-magenta-bright: #d2a8ff;
|
|
893
|
+
--color-checks-ansi-cyan: #76e3ea;
|
|
894
|
+
--color-checks-ansi-cyan-bright: #b3f0ff;
|
|
895
|
+
--color-project-header-bg: #0d1117;
|
|
896
|
+
--color-project-sidebar-bg: #161b22;
|
|
897
|
+
--color-project-gradient-in: #161b22;
|
|
898
|
+
--color-project-gradient-out: rgba(22,27,34,0);
|
|
899
|
+
--color-mktg-success: rgba(41,147,61,1);
|
|
900
|
+
--color-mktg-info: rgba(42,123,243,1);
|
|
901
|
+
--color-mktg-bg-shade-gradient-top: rgba(1,4,9,0.065);
|
|
902
|
+
--color-mktg-bg-shade-gradient-bottom: rgba(1,4,9,0);
|
|
903
|
+
--color-mktg-btn-bg-top: hsla(228,82%,66%,1);
|
|
904
|
+
--color-mktg-btn-bg-bottom: #4969ed;
|
|
905
|
+
--color-mktg-btn-bg-overlay-top: hsla(228,74%,59%,1);
|
|
906
|
+
--color-mktg-btn-bg-overlay-bottom: #3355e0;
|
|
907
|
+
--color-mktg-btn-text: #f0f6fc;
|
|
908
|
+
--color-mktg-btn-primary-bg-top: hsla(137,56%,46%,1);
|
|
909
|
+
--color-mktg-btn-primary-bg-bottom: #2ea44f;
|
|
910
|
+
--color-mktg-btn-primary-bg-overlay-top: hsla(134,60%,38%,1);
|
|
911
|
+
--color-mktg-btn-primary-bg-overlay-bottom: #22863a;
|
|
912
|
+
--color-mktg-btn-primary-text: #f0f6fc;
|
|
913
|
+
--color-mktg-btn-enterprise-bg-top: hsla(249,100%,72%,1);
|
|
914
|
+
--color-mktg-btn-enterprise-bg-bottom: #6f57ff;
|
|
915
|
+
--color-mktg-btn-enterprise-bg-overlay-top: hsla(248,65%,63%,1);
|
|
916
|
+
--color-mktg-btn-enterprise-bg-overlay-bottom: #614eda;
|
|
917
|
+
--color-mktg-btn-enterprise-text: #f0f6fc;
|
|
918
|
+
--color-mktg-btn-outline-text: #f0f6fc;
|
|
919
|
+
--color-mktg-btn-outline-border: rgba(240,246,252,0.3);
|
|
920
|
+
--color-mktg-btn-outline-hover-text: #f0f6fc;
|
|
921
|
+
--color-mktg-btn-outline-hover-border: rgba(240,246,252,0.5);
|
|
922
|
+
--color-mktg-btn-outline-focus-border: #f0f6fc;
|
|
923
|
+
--color-mktg-btn-outline-focus-border-inset: rgba(240,246,252,0.5);
|
|
924
|
+
--color-mktg-btn-dark-text: #f0f6fc;
|
|
925
|
+
--color-mktg-btn-dark-border: rgba(240,246,252,0.3);
|
|
926
|
+
--color-mktg-btn-dark-hover-text: #f0f6fc;
|
|
927
|
+
--color-mktg-btn-dark-hover-border: rgba(240,246,252,0.5);
|
|
928
|
+
--color-mktg-btn-dark-focus-border: #f0f6fc;
|
|
929
|
+
--color-mktg-btn-dark-focus-border-inset: rgba(240,246,252,0.5);
|
|
930
|
+
--color-avatar-bg: rgba(240,246,252,0.1);
|
|
931
|
+
--color-avatar-border: rgba(240,246,252,0.1);
|
|
932
|
+
--color-avatar-stack-fade: #30363d;
|
|
933
|
+
--color-avatar-stack-fade-more: #21262d;
|
|
934
|
+
--color-avatar-child-shadow: -2px -2px 0 #0d1117;
|
|
935
|
+
--color-topic-tag-border: rgba(0,0,0,0);
|
|
936
|
+
--color-select-menu-backdrop-border: #484f58;
|
|
937
|
+
--color-select-menu-tap-highlight: rgba(48,54,61,0.5);
|
|
938
|
+
--color-select-menu-tap-focus-bg: #0c2d6b;
|
|
939
|
+
--color-overlay-shadow: 0 0 0 1px #30363d, 0 16px 32px rgba(1,4,9,0.85);
|
|
940
|
+
--color-header-text: rgba(240,246,252,0.7);
|
|
941
|
+
--color-header-bg: #161b22;
|
|
942
|
+
--color-header-logo: #f0f6fc;
|
|
943
|
+
--color-header-search-bg: #0d1117;
|
|
944
|
+
--color-header-search-border: #30363d;
|
|
945
|
+
--color-sidenav-selected-bg: #21262d;
|
|
946
|
+
--color-menu-bg-active: #161b22;
|
|
947
|
+
--color-control-transparent-bg-hover: #656c7633;
|
|
948
|
+
--color-input-disabled-bg: rgba(110,118,129,0);
|
|
949
|
+
--color-timeline-badge-bg: #21262d;
|
|
950
|
+
--color-ansi-black: #484f58;
|
|
951
|
+
--color-ansi-black-bright: #6e7681;
|
|
952
|
+
--color-ansi-white: #b1bac4;
|
|
953
|
+
--color-ansi-white-bright: #f0f6fc;
|
|
954
|
+
--color-ansi-gray: #6e7681;
|
|
955
|
+
--color-ansi-red: #ff7b72;
|
|
956
|
+
--color-ansi-red-bright: #ffa198;
|
|
957
|
+
--color-ansi-green: #3fb950;
|
|
958
|
+
--color-ansi-green-bright: #56d364;
|
|
959
|
+
--color-ansi-yellow: #d29922;
|
|
960
|
+
--color-ansi-yellow-bright: #e3b341;
|
|
961
|
+
--color-ansi-blue: #58a6ff;
|
|
962
|
+
--color-ansi-blue-bright: #79c0ff;
|
|
963
|
+
--color-ansi-magenta: #bc8cff;
|
|
964
|
+
--color-ansi-magenta-bright: #d2a8ff;
|
|
965
|
+
--color-ansi-cyan: #39c5cf;
|
|
966
|
+
--color-ansi-cyan-bright: #56d4dd;
|
|
967
|
+
--color-btn-text: #c9d1d9;
|
|
968
|
+
--color-btn-bg: #21262d;
|
|
969
|
+
--color-btn-border: rgba(240,246,252,0.1);
|
|
970
|
+
--color-btn-shadow: 0 0 transparent;
|
|
971
|
+
--color-btn-inset-shadow: 0 0 transparent;
|
|
972
|
+
--color-btn-hover-bg: #30363d;
|
|
973
|
+
--color-btn-hover-border: #8b949e;
|
|
974
|
+
--color-btn-active-bg: hsla(212,12%,18%,1);
|
|
975
|
+
--color-btn-active-border: #6e7681;
|
|
976
|
+
--color-btn-selected-bg: #161b22;
|
|
977
|
+
--color-btn-focus-bg: #21262d;
|
|
978
|
+
--color-btn-focus-border: #8b949e;
|
|
979
|
+
--color-btn-focus-shadow: 0 0 0 3px rgba(139,148,158,0.3);
|
|
980
|
+
--color-btn-shadow-active: inset 0 0.15em 0.3em rgba(1,4,9,0.15);
|
|
981
|
+
--color-btn-shadow-input-focus: 0 0 0 0.2em rgba(31,111,235,0.3);
|
|
982
|
+
--color-btn-counter-bg: #30363d;
|
|
983
|
+
--color-btn-primary-text: #ffffff;
|
|
984
|
+
--color-btn-primary-bg: #238636;
|
|
985
|
+
--color-btn-primary-border: rgba(240,246,252,0.1);
|
|
986
|
+
--color-btn-primary-shadow: 0 0 transparent;
|
|
987
|
+
--color-btn-primary-inset-shadow: 0 0 transparent;
|
|
988
|
+
--color-btn-primary-hover-bg: #2ea043;
|
|
989
|
+
--color-btn-primary-hover-border: rgba(240,246,252,0.1);
|
|
990
|
+
--color-btn-primary-selected-bg: #238636;
|
|
991
|
+
--color-btn-primary-selected-shadow: 0 0 transparent;
|
|
992
|
+
--color-btn-primary-disabled-text: rgba(240,246,252,0.5);
|
|
993
|
+
--color-btn-primary-disabled-bg: rgba(35,134,54,0.6);
|
|
994
|
+
--color-btn-primary-disabled-border: rgba(240,246,252,0.1);
|
|
995
|
+
--color-btn-primary-focus-bg: #238636;
|
|
996
|
+
--color-btn-primary-focus-border: rgba(240,246,252,0.1);
|
|
997
|
+
--color-btn-primary-focus-shadow: 0 0 0 3px rgba(46,164,79,0.4);
|
|
998
|
+
--color-btn-primary-icon: #f0f6fc;
|
|
999
|
+
--color-btn-primary-counter-bg: rgba(240,246,252,0.2);
|
|
1000
|
+
--color-btn-outline-text: #58a6ff;
|
|
1001
|
+
--color-btn-outline-hover-text: #58a6ff;
|
|
1002
|
+
--color-btn-outline-hover-bg: #30363d;
|
|
1003
|
+
--color-btn-outline-hover-border: rgba(240,246,252,0.1);
|
|
1004
|
+
--color-btn-outline-hover-shadow: 0 1px 0 rgba(1,4,9,0.1);
|
|
1005
|
+
--color-btn-outline-hover-inset-shadow: inset 0 1px 0 rgba(240,246,252,0.03);
|
|
1006
|
+
--color-btn-outline-hover-counter-bg: rgba(240,246,252,0.2);
|
|
1007
|
+
--color-btn-outline-selected-text: #f0f6fc;
|
|
1008
|
+
--color-btn-outline-selected-bg: #0d419d;
|
|
1009
|
+
--color-btn-outline-selected-border: rgba(240,246,252,0.1);
|
|
1010
|
+
--color-btn-outline-selected-shadow: 0 0 transparent;
|
|
1011
|
+
--color-btn-outline-disabled-text: rgba(88,166,255,0.5);
|
|
1012
|
+
--color-btn-outline-disabled-bg: #0d1117;
|
|
1013
|
+
--color-btn-outline-disabled-counter-bg: rgba(31,111,235,0.05);
|
|
1014
|
+
--color-btn-outline-focus-border: rgba(240,246,252,0.1);
|
|
1015
|
+
--color-btn-outline-focus-shadow: 0 0 0 3px rgba(17,88,199,0.4);
|
|
1016
|
+
--color-btn-outline-counter-bg: rgba(31,111,235,0.1);
|
|
1017
|
+
--color-btn-danger-text: #f85149;
|
|
1018
|
+
--color-btn-danger-hover-text: #f0f6fc;
|
|
1019
|
+
--color-btn-danger-hover-bg: #da3633;
|
|
1020
|
+
--color-btn-danger-hover-border: #f85149;
|
|
1021
|
+
--color-btn-danger-hover-shadow: 0 0 transparent;
|
|
1022
|
+
--color-btn-danger-hover-inset-shadow: 0 0 transparent;
|
|
1023
|
+
--color-btn-danger-hover-icon: #f0f6fc;
|
|
1024
|
+
--color-btn-danger-hover-counter-bg: rgba(255,255,255,0.2);
|
|
1025
|
+
--color-btn-danger-selected-text: #ffffff;
|
|
1026
|
+
--color-btn-danger-selected-bg: #b62324;
|
|
1027
|
+
--color-btn-danger-selected-border: #ff7b72;
|
|
1028
|
+
--color-btn-danger-selected-shadow: 0 0 transparent;
|
|
1029
|
+
--color-btn-danger-disabled-text: rgba(248,81,73,0.5);
|
|
1030
|
+
--color-btn-danger-disabled-bg: #0d1117;
|
|
1031
|
+
--color-btn-danger-disabled-counter-bg: rgba(218,54,51,0.05);
|
|
1032
|
+
--color-btn-danger-focus-border: #f85149;
|
|
1033
|
+
--color-btn-danger-focus-shadow: 0 0 0 3px rgba(248,81,73,0.4);
|
|
1034
|
+
--color-btn-danger-counter-bg: rgba(218,54,51,0.1);
|
|
1035
|
+
--color-btn-danger-icon: #f85149;
|
|
1036
|
+
--color-underlinenav-icon: #484f58;
|
|
1037
|
+
--color-underlinenav-border-hover: rgba(110,118,129,0.4);
|
|
1038
|
+
--color-fg-default: #c9d1d9;
|
|
1039
|
+
--color-fg-muted: #8b949e;
|
|
1040
|
+
--color-fg-subtle: #484f58;
|
|
1041
|
+
--color-fg-on-emphasis: #f0f6fc;
|
|
1042
|
+
--color-canvas-default: #0d1117;
|
|
1043
|
+
--color-canvas-overlay: #161b22;
|
|
1044
|
+
--color-canvas-inset: #010409;
|
|
1045
|
+
--color-canvas-subtle: #161b22;
|
|
1046
|
+
--color-border-default: #30363d;
|
|
1047
|
+
--color-border-muted: #21262d;
|
|
1048
|
+
--color-border-subtle: rgba(240,246,252,0.1);
|
|
1049
|
+
--color-shadow-small: 0 0 transparent;
|
|
1050
|
+
--color-shadow-medium: 0 3px 6px #010409;
|
|
1051
|
+
--color-shadow-large: 0 8px 24px #010409;
|
|
1052
|
+
--color-shadow-extra-large: 0 12px 48px #010409;
|
|
1053
|
+
--color-neutral-emphasis-plus: #6e7681;
|
|
1054
|
+
--color-neutral-emphasis: #6e7681;
|
|
1055
|
+
--color-neutral-muted: rgba(110,118,129,0.4);
|
|
1056
|
+
--color-neutral-subtle: rgba(110,118,129,0.1);
|
|
1057
|
+
--color-accent-fg: #58a6ff;
|
|
1058
|
+
--color-accent-emphasis: #1f6feb;
|
|
1059
|
+
--color-accent-muted: rgba(56,139,253,0.4);
|
|
1060
|
+
--color-accent-subtle: rgba(56,139,253,0.15);
|
|
1061
|
+
--color-success-fg: #3fb950;
|
|
1062
|
+
--color-success-emphasis: #238636;
|
|
1063
|
+
--color-success-muted: rgba(46,160,67,0.4);
|
|
1064
|
+
--color-success-subtle: rgba(46,160,67,0.15);
|
|
1065
|
+
--color-attention-fg: #d29922;
|
|
1066
|
+
--color-attention-emphasis: #9e6a03;
|
|
1067
|
+
--color-attention-muted: rgba(187,128,9,0.4);
|
|
1068
|
+
--color-attention-subtle: rgba(187,128,9,0.15);
|
|
1069
|
+
--color-severe-fg: #db6d28;
|
|
1070
|
+
--color-severe-emphasis: #bd561d;
|
|
1071
|
+
--color-severe-muted: rgba(219,109,40,0.4);
|
|
1072
|
+
--color-severe-subtle: rgba(219,109,40,0.15);
|
|
1073
|
+
--color-danger-fg: #f85149;
|
|
1074
|
+
--color-danger-emphasis: #da3633;
|
|
1075
|
+
--color-danger-muted: rgba(248,81,73,0.4);
|
|
1076
|
+
--color-danger-subtle: rgba(248,81,73,0.15);
|
|
1077
|
+
--color-done-fg: #a371f7;
|
|
1078
|
+
--color-done-emphasis: #8957e5;
|
|
1079
|
+
--color-done-muted: rgba(163,113,247,0.4);
|
|
1080
|
+
--color-done-subtle: rgba(163,113,247,0.15);
|
|
1081
|
+
--color-sponsors-fg: #db61a2;
|
|
1082
|
+
--color-sponsors-emphasis: #bf4b8a;
|
|
1083
|
+
--color-sponsors-muted: rgba(219,97,162,0.4);
|
|
1084
|
+
--color-sponsors-subtle: rgba(219,97,162,0.15);
|
|
1085
|
+
--color-primer-canvas-backdrop: rgba(1,4,9,0.8);
|
|
1086
|
+
--color-primer-canvas-sticky: rgba(13,17,23,0.95);
|
|
1087
|
+
--color-primer-border-active: #F78166;
|
|
1088
|
+
--color-primer-border-contrast: rgba(240,246,252,0.2);
|
|
1089
|
+
--color-primer-shadow-highlight: 0 0 transparent;
|
|
1090
|
+
--color-primer-shadow-inset: 0 0 transparent;
|
|
1091
|
+
--color-primer-shadow-focus: 0 0 0 3px #0c2d6b;
|
|
1092
|
+
--color-scale-black: #010409;
|
|
1093
|
+
--color-scale-white: #f0f6fc;
|
|
1094
|
+
--color-scale-gray-0: #f0f6fc;
|
|
1095
|
+
--color-scale-gray-1: #c9d1d9;
|
|
1096
|
+
--color-scale-gray-2: #b1bac4;
|
|
1097
|
+
--color-scale-gray-3: #8b949e;
|
|
1098
|
+
--color-scale-gray-4: #6e7681;
|
|
1099
|
+
--color-scale-gray-5: #484f58;
|
|
1100
|
+
--color-scale-gray-6: #30363d;
|
|
1101
|
+
--color-scale-gray-7: #21262d;
|
|
1102
|
+
--color-scale-gray-8: #161b22;
|
|
1103
|
+
--color-scale-gray-9: #0d1117;
|
|
1104
|
+
--color-scale-blue-0: #cae8ff;
|
|
1105
|
+
--color-scale-blue-1: #a5d6ff;
|
|
1106
|
+
--color-scale-blue-2: #79c0ff;
|
|
1107
|
+
--color-scale-blue-3: #58a6ff;
|
|
1108
|
+
--color-scale-blue-4: #388bfd;
|
|
1109
|
+
--color-scale-blue-5: #1f6feb;
|
|
1110
|
+
--color-scale-blue-6: #1158c7;
|
|
1111
|
+
--color-scale-blue-7: #0d419d;
|
|
1112
|
+
--color-scale-blue-8: #0c2d6b;
|
|
1113
|
+
--color-scale-blue-9: #051d4d;
|
|
1114
|
+
--color-scale-green-0: #aff5b4;
|
|
1115
|
+
--color-scale-green-1: #7ee787;
|
|
1116
|
+
--color-scale-green-2: #56d364;
|
|
1117
|
+
--color-scale-green-3: #3fb950;
|
|
1118
|
+
--color-scale-green-4: #2ea043;
|
|
1119
|
+
--color-scale-green-5: #238636;
|
|
1120
|
+
--color-scale-green-6: #196c2e;
|
|
1121
|
+
--color-scale-green-7: #0f5323;
|
|
1122
|
+
--color-scale-green-8: #033a16;
|
|
1123
|
+
--color-scale-green-9: #04260f;
|
|
1124
|
+
--color-scale-yellow-0: #f8e3a1;
|
|
1125
|
+
--color-scale-yellow-1: #f2cc60;
|
|
1126
|
+
--color-scale-yellow-2: #e3b341;
|
|
1127
|
+
--color-scale-yellow-3: #d29922;
|
|
1128
|
+
--color-scale-yellow-4: #bb8009;
|
|
1129
|
+
--color-scale-yellow-5: #9e6a03;
|
|
1130
|
+
--color-scale-yellow-6: #845306;
|
|
1131
|
+
--color-scale-yellow-7: #693e00;
|
|
1132
|
+
--color-scale-yellow-8: #4b2900;
|
|
1133
|
+
--color-scale-yellow-9: #341a00;
|
|
1134
|
+
--color-scale-orange-0: #ffdfb6;
|
|
1135
|
+
--color-scale-orange-1: #ffc680;
|
|
1136
|
+
--color-scale-orange-2: #ffa657;
|
|
1137
|
+
--color-scale-orange-3: #f0883e;
|
|
1138
|
+
--color-scale-orange-4: #db6d28;
|
|
1139
|
+
--color-scale-orange-5: #bd561d;
|
|
1140
|
+
--color-scale-orange-6: #9b4215;
|
|
1141
|
+
--color-scale-orange-7: #762d0a;
|
|
1142
|
+
--color-scale-orange-8: #5a1e02;
|
|
1143
|
+
--color-scale-orange-9: #3d1300;
|
|
1144
|
+
--color-scale-red-0: #ffdcd7;
|
|
1145
|
+
--color-scale-red-1: #ffc1ba;
|
|
1146
|
+
--color-scale-red-2: #ffa198;
|
|
1147
|
+
--color-scale-red-3: #ff7b72;
|
|
1148
|
+
--color-scale-red-4: #f85149;
|
|
1149
|
+
--color-scale-red-5: #da3633;
|
|
1150
|
+
--color-scale-red-6: #b62324;
|
|
1151
|
+
--color-scale-red-7: #8e1519;
|
|
1152
|
+
--color-scale-red-8: #67060c;
|
|
1153
|
+
--color-scale-red-9: #490202;
|
|
1154
|
+
--color-scale-purple-0: #eddeff;
|
|
1155
|
+
--color-scale-purple-1: #e2c5ff;
|
|
1156
|
+
--color-scale-purple-2: #d2a8ff;
|
|
1157
|
+
--color-scale-purple-3: #bc8cff;
|
|
1158
|
+
--color-scale-purple-4: #a371f7;
|
|
1159
|
+
--color-scale-purple-5: #8957e5;
|
|
1160
|
+
--color-scale-purple-6: #6e40c9;
|
|
1161
|
+
--color-scale-purple-7: #553098;
|
|
1162
|
+
--color-scale-purple-8: #3c1e70;
|
|
1163
|
+
--color-scale-purple-9: #271052;
|
|
1164
|
+
--color-scale-pink-0: #ffdaec;
|
|
1165
|
+
--color-scale-pink-1: #ffbedd;
|
|
1166
|
+
--color-scale-pink-2: #ff9bce;
|
|
1167
|
+
--color-scale-pink-3: #f778ba;
|
|
1168
|
+
--color-scale-pink-4: #db61a2;
|
|
1169
|
+
--color-scale-pink-5: #bf4b8a;
|
|
1170
|
+
--color-scale-pink-6: #9e3670;
|
|
1171
|
+
--color-scale-pink-7: #7d2457;
|
|
1172
|
+
--color-scale-pink-8: #5e103e;
|
|
1173
|
+
--color-scale-pink-9: #42062a;
|
|
1174
|
+
--color-scale-coral-0: #FFDDD2;
|
|
1175
|
+
--color-scale-coral-1: #FFC2B2;
|
|
1176
|
+
--color-scale-coral-2: #FFA28B;
|
|
1177
|
+
--color-scale-coral-3: #F78166;
|
|
1178
|
+
--color-scale-coral-4: #EA6045;
|
|
1179
|
+
--color-scale-coral-5: #CF462D;
|
|
1180
|
+
--color-scale-coral-6: #AC3220;
|
|
1181
|
+
--color-scale-coral-7: #872012;
|
|
1182
|
+
--color-scale-coral-8: #640D04;
|
|
1183
|
+
--color-scale-coral-9: #460701
|
|
1184
|
+
}
|
|
1185
|
+
}
|
|
1186
|
+
/*
|
|
1187
|
+
Copyright (c) Microsoft Corporation.
|
|
1188
|
+
|
|
1189
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
1190
|
+
you may not use this file except in compliance with the License.
|
|
1191
|
+
You may obtain a copy of the License at
|
|
1192
|
+
|
|
1193
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
1194
|
+
|
|
1195
|
+
Unless required by applicable law or agreed to in writing, software
|
|
1196
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
1197
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
1198
|
+
See the License for the specific language governing permissions and
|
|
1199
|
+
limitations under the License.
|
|
1200
|
+
*/
|
|
1201
|
+
|
|
1202
|
+
.copy-icon {
|
|
1203
|
+
flex: none;
|
|
1204
|
+
height: 24px;
|
|
1205
|
+
width: 24px;
|
|
1206
|
+
border: none;
|
|
1207
|
+
outline: none;
|
|
1208
|
+
color: var(--color-fg-muted);
|
|
1209
|
+
background: transparent;
|
|
1210
|
+
padding: 4px;
|
|
1211
|
+
cursor: pointer;
|
|
1212
|
+
display: inline-flex;
|
|
1213
|
+
align-items: center;
|
|
1214
|
+
justify-content: center;
|
|
1215
|
+
border-radius: 4px;
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
.copy-icon svg {
|
|
1219
|
+
margin: 0;
|
|
1220
|
+
}
|
|
1221
|
+
|
|
1222
|
+
.copy-icon:not(:disabled):hover {
|
|
1223
|
+
background-color: var(--color-btn-selected-bg);
|
|
1224
|
+
}
|
|
1225
|
+
/*
|
|
1226
|
+
Copyright (c) Microsoft Corporation.
|
|
1227
|
+
|
|
1228
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
1229
|
+
you may not use this file except in compliance with the License.
|
|
1230
|
+
You may obtain a copy of the License at
|
|
1231
|
+
|
|
1232
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
1233
|
+
|
|
1234
|
+
Unless required by applicable law or agreed to in writing, software
|
|
1235
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
1236
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
1237
|
+
See the License for the specific language governing permissions and
|
|
1238
|
+
limitations under the License.
|
|
1239
|
+
*/
|
|
1240
|
+
|
|
1241
|
+
.auth-token-section {
|
|
1242
|
+
margin: 16px 0;
|
|
1243
|
+
padding: 16px;
|
|
1244
|
+
background-color: #f6f8fa;
|
|
1245
|
+
border-radius: 6px;
|
|
1246
|
+
}
|
|
1247
|
+
|
|
1248
|
+
.auth-token-description {
|
|
1249
|
+
font-size: 12px;
|
|
1250
|
+
color: #656d76;
|
|
1251
|
+
margin-bottom: 12px;
|
|
1252
|
+
}
|
|
1253
|
+
|
|
1254
|
+
.auth-token-container {
|
|
1255
|
+
display: flex;
|
|
1256
|
+
align-items: center;
|
|
1257
|
+
gap: 8px;
|
|
1258
|
+
background-color: #ffffff;
|
|
1259
|
+
padding: 8px;
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1262
|
+
.auth-token-code {
|
|
1263
|
+
font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
|
|
1264
|
+
font-size: 12px;
|
|
1265
|
+
color: #1f2328;
|
|
1266
|
+
border: none;
|
|
1267
|
+
flex: 1;
|
|
1268
|
+
padding: 0;
|
|
1269
|
+
word-break: break-all;
|
|
1270
|
+
}
|
|
1271
|
+
|
|
1272
|
+
.auth-token-refresh {
|
|
1273
|
+
flex: none;
|
|
1274
|
+
height: 24px;
|
|
1275
|
+
width: 24px;
|
|
1276
|
+
border: none;
|
|
1277
|
+
outline: none;
|
|
1278
|
+
color: var(--color-fg-muted);
|
|
1279
|
+
background: transparent;
|
|
1280
|
+
padding: 4px;
|
|
1281
|
+
cursor: pointer;
|
|
1282
|
+
display: inline-flex;
|
|
1283
|
+
align-items: center;
|
|
1284
|
+
justify-content: center;
|
|
1285
|
+
border-radius: 4px;
|
|
1286
|
+
}
|
|
1287
|
+
|
|
1288
|
+
.auth-token-refresh svg {
|
|
1289
|
+
margin: 0;
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1292
|
+
.auth-token-refresh:not(:disabled):hover {
|
|
1293
|
+
background-color: var(--color-btn-selected-bg);
|
|
1294
|
+
}
|
|
1295
|
+
|
|
1296
|
+
.auth-token-example-section {
|
|
1297
|
+
margin-top: 16px;
|
|
1298
|
+
}
|
|
1299
|
+
|
|
1300
|
+
.auth-token-example-toggle {
|
|
1301
|
+
display: flex;
|
|
1302
|
+
align-items: center;
|
|
1303
|
+
gap: 8px;
|
|
1304
|
+
background: none;
|
|
1305
|
+
border: none;
|
|
1306
|
+
padding: 8px 0;
|
|
1307
|
+
font-size: 12px;
|
|
1308
|
+
color: #656d76;
|
|
1309
|
+
cursor: pointer;
|
|
1310
|
+
outline: none;
|
|
1311
|
+
text-align: left;
|
|
1312
|
+
width: 100%;
|
|
1313
|
+
}
|
|
1314
|
+
|
|
1315
|
+
.auth-token-example-toggle:hover {
|
|
1316
|
+
color: #1f2328;
|
|
1317
|
+
}
|
|
1318
|
+
|
|
1319
|
+
.auth-token-chevron {
|
|
1320
|
+
display: inline-flex;
|
|
1321
|
+
align-items: center;
|
|
1322
|
+
justify-content: center;
|
|
1323
|
+
transform: rotate(-90deg);
|
|
1324
|
+
flex-shrink: 0;
|
|
1325
|
+
}
|
|
1326
|
+
|
|
1327
|
+
.auth-token-chevron.expanded {
|
|
1328
|
+
transform: rotate(0deg);
|
|
1329
|
+
}
|
|
1330
|
+
|
|
1331
|
+
.auth-token-chevron svg {
|
|
1332
|
+
width: 12px;
|
|
1333
|
+
height: 12px;
|
|
1334
|
+
}
|
|
1335
|
+
|
|
1336
|
+
.auth-token-chevron .octicon {
|
|
1337
|
+
margin: 0px;
|
|
1338
|
+
}
|
|
1339
|
+
|
|
1340
|
+
.auth-token-example-content {
|
|
1341
|
+
margin-top: 12px;
|
|
1342
|
+
padding: 12px 0;
|
|
1343
|
+
}
|
|
1344
|
+
|
|
1345
|
+
.auth-token-example-description {
|
|
1346
|
+
font-size: 12px;
|
|
1347
|
+
color: #656d76;
|
|
1348
|
+
margin-bottom: 12px;
|
|
1349
|
+
}
|
|
1350
|
+
|
|
1351
|
+
.auth-token-example-config {
|
|
1352
|
+
display: flex;
|
|
1353
|
+
align-items: flex-start;
|
|
1354
|
+
gap: 8px;
|
|
1355
|
+
background-color: #ffffff;
|
|
1356
|
+
padding: 12px;
|
|
1357
|
+
}
|
|
1358
|
+
|
|
1359
|
+
.auth-token-example-code {
|
|
1360
|
+
font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
|
|
1361
|
+
font-size: 11px;
|
|
1362
|
+
color: #1f2328;
|
|
1363
|
+
white-space: pre;
|
|
1364
|
+
flex: 1;
|
|
1365
|
+
line-height: 1.4;
|
|
1366
|
+
}
|