@anyblades/pico 2.1.1-alpha → 2.1.1-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -7
- package/css/pico.css +890 -708
- package/css/pico.min.css +100 -1
- package/css/postcss.config.js +5 -4
- package/package.json +9 -10
- package/src/_components.css +974 -0
- package/src/_content.css +604 -0
- package/src/_forms.css +745 -0
- package/src/_layout.css +127 -0
- package/src/_utilities.css +53 -0
- package/src/_variables.css +689 -0
- package/src/pico.css +11 -0
|
@@ -0,0 +1,689 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Variables
|
|
3
|
+
*/
|
|
4
|
+
:root,
|
|
5
|
+
:host {
|
|
6
|
+
--pico-font-family-emoji:
|
|
7
|
+
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
8
|
+
--pico-font-family-sans-serif:
|
|
9
|
+
system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue",
|
|
10
|
+
sans-serif, var(--pico-font-family-emoji);
|
|
11
|
+
--pico-font-family-monospace:
|
|
12
|
+
ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace,
|
|
13
|
+
var(--pico-font-family-emoji);
|
|
14
|
+
--pico-font-family: var(--pico-font-family-sans-serif);
|
|
15
|
+
--pico-line-height: 1.5;
|
|
16
|
+
--pico-font-weight: 400;
|
|
17
|
+
--pico-font-size: 100%;
|
|
18
|
+
--pico-text-underline-offset: 0.1rem;
|
|
19
|
+
--pico-border-radius: 0.25rem;
|
|
20
|
+
--pico-border-width: 0.0625rem;
|
|
21
|
+
--pico-outline-width: 0.125rem;
|
|
22
|
+
--pico-transition: 0.2s ease-in-out;
|
|
23
|
+
--pico-spacing: 1rem;
|
|
24
|
+
--pico-typography-spacing-vertical: 1rem;
|
|
25
|
+
--pico-block-spacing-vertical: var(--pico-spacing);
|
|
26
|
+
--pico-block-spacing-horizontal: var(--pico-spacing);
|
|
27
|
+
--pico-grid-column-gap: var(--pico-spacing);
|
|
28
|
+
--pico-grid-row-gap: var(--pico-spacing);
|
|
29
|
+
--pico-form-element-spacing-vertical: 0.75rem;
|
|
30
|
+
--pico-form-element-spacing-horizontal: 1rem;
|
|
31
|
+
--pico-group-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
|
|
32
|
+
--pico-group-box-shadow-focus-with-button: 0 0 0 var(--pico-outline-width)
|
|
33
|
+
var(--pico-primary-focus);
|
|
34
|
+
--pico-group-box-shadow-focus-with-input: 0 0 0 0.0625rem var(--pico-form-element-border-color);
|
|
35
|
+
--pico-modal-overlay-backdrop-filter: blur(0.375rem);
|
|
36
|
+
--pico-nav-element-spacing-vertical: 1rem;
|
|
37
|
+
--pico-nav-element-spacing-horizontal: 0.5rem;
|
|
38
|
+
--pico-nav-link-spacing-vertical: 0.5rem;
|
|
39
|
+
--pico-nav-link-spacing-horizontal: 0.5rem;
|
|
40
|
+
--pico-nav-breadcrumb-divider: ">";
|
|
41
|
+
--pico-icon-checkbox: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(255, 255, 255)' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
|
|
42
|
+
--pico-icon-minus: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(255, 255, 255)' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
|
|
43
|
+
--pico-icon-chevron: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(136, 145, 164)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
|
|
44
|
+
--pico-icon-date: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(136, 145, 164)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
|
|
45
|
+
--pico-icon-time: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(136, 145, 164)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolyline points='12 6 12 12 16 14'%3E%3C/polyline%3E%3C/svg%3E");
|
|
46
|
+
--pico-icon-search: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(136, 145, 164)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E");
|
|
47
|
+
--pico-icon-close: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(136, 145, 164)' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
|
|
48
|
+
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
|
49
|
+
}
|
|
50
|
+
@media (min-width: 576px) {
|
|
51
|
+
:root,
|
|
52
|
+
:host {
|
|
53
|
+
--pico-font-size: 106.25%;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
@media (min-width: 768px) {
|
|
57
|
+
:root,
|
|
58
|
+
:host {
|
|
59
|
+
--pico-font-size: 112.5%;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
@media (min-width: 1024px) {
|
|
63
|
+
:root,
|
|
64
|
+
:host {
|
|
65
|
+
--pico-font-size: 118.75%;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
@media (min-width: 1280px) {
|
|
69
|
+
:root,
|
|
70
|
+
:host {
|
|
71
|
+
--pico-font-size: 125%;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
@media (min-width: 1536px) {
|
|
75
|
+
:root,
|
|
76
|
+
:host {
|
|
77
|
+
--pico-font-size: 131.25%;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
a {
|
|
82
|
+
--pico-text-decoration: underline;
|
|
83
|
+
}
|
|
84
|
+
a.secondary,
|
|
85
|
+
a.contrast {
|
|
86
|
+
--pico-text-decoration: underline;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
small {
|
|
90
|
+
--pico-font-size: 0.875em;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
h1,
|
|
94
|
+
h2,
|
|
95
|
+
h3,
|
|
96
|
+
h4,
|
|
97
|
+
h5,
|
|
98
|
+
h6 {
|
|
99
|
+
--pico-font-weight: 700;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
h1 {
|
|
103
|
+
--pico-font-size: 2rem;
|
|
104
|
+
--pico-line-height: 1.125;
|
|
105
|
+
--pico-typography-spacing-top: 3rem;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
h2 {
|
|
109
|
+
--pico-font-size: 1.75rem;
|
|
110
|
+
--pico-line-height: 1.15;
|
|
111
|
+
--pico-typography-spacing-top: 2.625rem;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
h3 {
|
|
115
|
+
--pico-font-size: 1.5rem;
|
|
116
|
+
--pico-line-height: 1.175;
|
|
117
|
+
--pico-typography-spacing-top: 2.25rem;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
h4 {
|
|
121
|
+
--pico-font-size: 1.25rem;
|
|
122
|
+
--pico-line-height: 1.2;
|
|
123
|
+
--pico-typography-spacing-top: 1.874rem;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
h5 {
|
|
127
|
+
--pico-font-size: 1.125rem;
|
|
128
|
+
--pico-line-height: 1.225;
|
|
129
|
+
--pico-typography-spacing-top: 1.6875rem;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
h6 {
|
|
133
|
+
--pico-font-size: 1rem;
|
|
134
|
+
--pico-line-height: 1.25;
|
|
135
|
+
--pico-typography-spacing-top: 1.5rem;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
thead th,
|
|
139
|
+
thead td,
|
|
140
|
+
tfoot th,
|
|
141
|
+
tfoot td {
|
|
142
|
+
--pico-font-weight: 600;
|
|
143
|
+
--pico-border-width: 0.1875rem;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
pre,
|
|
147
|
+
code,
|
|
148
|
+
kbd,
|
|
149
|
+
samp {
|
|
150
|
+
--pico-font-family: var(--pico-font-family-monospace);
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
kbd {
|
|
154
|
+
--pico-font-weight: bolder;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
input:not(
|
|
158
|
+
[type="submit"],
|
|
159
|
+
[type="button"],
|
|
160
|
+
[type="reset"],
|
|
161
|
+
[type="checkbox"],
|
|
162
|
+
[type="radio"],
|
|
163
|
+
[type="file"]
|
|
164
|
+
),
|
|
165
|
+
:where(select, textarea) {
|
|
166
|
+
--pico-outline-width: 0.0625rem;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
[type="search"] {
|
|
170
|
+
--pico-border-radius: 5rem;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
[type="checkbox"],
|
|
174
|
+
[type="radio"] {
|
|
175
|
+
--pico-border-width: 0.125rem;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
[type="checkbox"][role="switch"] {
|
|
179
|
+
--pico-border-width: 0.1875rem;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
details.dropdown summary:not([role="button"]) {
|
|
183
|
+
--pico-outline-width: 0.0625rem;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
nav details.dropdown summary:focus-visible {
|
|
187
|
+
--pico-outline-width: 0.125rem;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
[role="search"] {
|
|
191
|
+
--pico-border-radius: 5rem;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
[role="search"]:has(
|
|
195
|
+
button.secondary:focus,
|
|
196
|
+
[type="submit"].secondary:focus,
|
|
197
|
+
[type="button"].secondary:focus,
|
|
198
|
+
[role="button"].secondary:focus
|
|
199
|
+
),
|
|
200
|
+
[role="group"]:has(
|
|
201
|
+
button.secondary:focus,
|
|
202
|
+
[type="submit"].secondary:focus,
|
|
203
|
+
[type="button"].secondary:focus,
|
|
204
|
+
[role="button"].secondary:focus
|
|
205
|
+
) {
|
|
206
|
+
--pico-group-box-shadow-focus-with-button: 0 0 0 var(--pico-outline-width)
|
|
207
|
+
var(--pico-secondary-focus);
|
|
208
|
+
}
|
|
209
|
+
[role="search"]:has(
|
|
210
|
+
button.contrast:focus,
|
|
211
|
+
[type="submit"].contrast:focus,
|
|
212
|
+
[type="button"].contrast:focus,
|
|
213
|
+
[role="button"].contrast:focus
|
|
214
|
+
),
|
|
215
|
+
[role="group"]:has(
|
|
216
|
+
button.contrast:focus,
|
|
217
|
+
[type="submit"].contrast:focus,
|
|
218
|
+
[type="button"].contrast:focus,
|
|
219
|
+
[role="button"].contrast:focus
|
|
220
|
+
) {
|
|
221
|
+
--pico-group-box-shadow-focus-with-button: 0 0 0 var(--pico-outline-width)
|
|
222
|
+
var(--pico-contrast-focus);
|
|
223
|
+
}
|
|
224
|
+
[role="search"] button,
|
|
225
|
+
[role="search"] [type="submit"],
|
|
226
|
+
[role="search"] [type="button"],
|
|
227
|
+
[role="search"] [role="button"],
|
|
228
|
+
[role="group"] button,
|
|
229
|
+
[role="group"] [type="submit"],
|
|
230
|
+
[role="group"] [type="button"],
|
|
231
|
+
[role="group"] [role="button"] {
|
|
232
|
+
--pico-form-element-spacing-horizontal: 2rem;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
details summary[role="button"]:not(.outline)::after {
|
|
236
|
+
filter: brightness(0) invert(1);
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
[aria-busy="true"]:not(input, select, textarea):is(
|
|
240
|
+
button,
|
|
241
|
+
[type="submit"],
|
|
242
|
+
[type="button"],
|
|
243
|
+
[type="reset"],
|
|
244
|
+
[role="button"]
|
|
245
|
+
):not(.outline)::before {
|
|
246
|
+
filter: brightness(0) invert(1);
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
/**
|
|
250
|
+
* Color schemes
|
|
251
|
+
*/
|
|
252
|
+
[data-theme="light"],
|
|
253
|
+
:root:not([data-theme="dark"]),
|
|
254
|
+
:host(:not([data-theme="dark"])) {
|
|
255
|
+
color-scheme: light;
|
|
256
|
+
--pico-background-color: #fff;
|
|
257
|
+
--pico-color: #373c44;
|
|
258
|
+
--pico-text-selection-color: rgba(2, 154, 232, 0.25);
|
|
259
|
+
--pico-muted-color: #646b79;
|
|
260
|
+
--pico-muted-border-color: rgb(231, 234, 239.5);
|
|
261
|
+
--pico-primary: #0172ad;
|
|
262
|
+
--pico-primary-background: #0172ad;
|
|
263
|
+
--pico-primary-border: var(--pico-primary-background);
|
|
264
|
+
--pico-primary-underline: rgba(1, 114, 173, 0.5);
|
|
265
|
+
--pico-primary-hover: #015887;
|
|
266
|
+
--pico-primary-hover-background: #02659a;
|
|
267
|
+
--pico-primary-hover-border: var(--pico-primary-hover-background);
|
|
268
|
+
--pico-primary-hover-underline: var(--pico-primary-hover);
|
|
269
|
+
--pico-primary-focus: rgba(2, 154, 232, 0.5);
|
|
270
|
+
--pico-primary-inverse: #fff;
|
|
271
|
+
--pico-secondary: #5d6b89;
|
|
272
|
+
--pico-secondary-background: #525f7a;
|
|
273
|
+
--pico-secondary-border: var(--pico-secondary-background);
|
|
274
|
+
--pico-secondary-underline: rgba(93, 107, 137, 0.5);
|
|
275
|
+
--pico-secondary-hover: #48536b;
|
|
276
|
+
--pico-secondary-hover-background: #48536b;
|
|
277
|
+
--pico-secondary-hover-border: var(--pico-secondary-hover-background);
|
|
278
|
+
--pico-secondary-hover-underline: var(--pico-secondary-hover);
|
|
279
|
+
--pico-secondary-focus: rgba(93, 107, 137, 0.25);
|
|
280
|
+
--pico-secondary-inverse: #fff;
|
|
281
|
+
--pico-contrast: #181c25;
|
|
282
|
+
--pico-contrast-background: #181c25;
|
|
283
|
+
--pico-contrast-border: var(--pico-contrast-background);
|
|
284
|
+
--pico-contrast-underline: rgba(24, 28, 37, 0.5);
|
|
285
|
+
--pico-contrast-hover: #000;
|
|
286
|
+
--pico-contrast-hover-background: #000;
|
|
287
|
+
--pico-contrast-hover-border: var(--pico-contrast-hover-background);
|
|
288
|
+
--pico-contrast-hover-underline: var(--pico-secondary-hover);
|
|
289
|
+
--pico-contrast-focus: rgba(93, 107, 137, 0.25);
|
|
290
|
+
--pico-contrast-inverse: #fff;
|
|
291
|
+
--pico-box-shadow:
|
|
292
|
+
0.0145rem 0.029rem 0.174rem rgba(129, 145, 181, 0.01698),
|
|
293
|
+
0.0335rem 0.067rem 0.402rem rgba(129, 145, 181, 0.024),
|
|
294
|
+
0.0625rem 0.125rem 0.75rem rgba(129, 145, 181, 0.03),
|
|
295
|
+
0.1125rem 0.225rem 1.35rem rgba(129, 145, 181, 0.036),
|
|
296
|
+
0.2085rem 0.417rem 2.502rem rgba(129, 145, 181, 0.04302),
|
|
297
|
+
0.5rem 1rem 6rem rgba(129, 145, 181, 0.06), 0 0 0 0.0625rem rgba(129, 145, 181, 0.015);
|
|
298
|
+
--pico-h1-color: #2d3138;
|
|
299
|
+
--pico-h2-color: #373c44;
|
|
300
|
+
--pico-h3-color: #424751;
|
|
301
|
+
--pico-h4-color: #4d535e;
|
|
302
|
+
--pico-h5-color: #5c6370;
|
|
303
|
+
--pico-h6-color: #646b79;
|
|
304
|
+
--pico-mark-background-color: rgb(252.5, 230.5, 191.5);
|
|
305
|
+
--pico-mark-color: #0f1114;
|
|
306
|
+
--pico-ins-color: rgb(28.5, 105.5, 84);
|
|
307
|
+
--pico-del-color: rgb(136, 56.5, 53);
|
|
308
|
+
--pico-blockquote-border-color: var(--pico-muted-border-color);
|
|
309
|
+
--pico-blockquote-footer-color: var(--pico-muted-color);
|
|
310
|
+
--pico-button-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
|
|
311
|
+
--pico-button-hover-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
|
|
312
|
+
--pico-table-border-color: var(--pico-muted-border-color);
|
|
313
|
+
--pico-table-row-stripped-background-color: rgba(111, 120, 135, 0.0375);
|
|
314
|
+
--pico-code-background-color: rgb(243, 244.5, 246.75);
|
|
315
|
+
--pico-code-color: #646b79;
|
|
316
|
+
--pico-code-kbd-background-color: var(--pico-color);
|
|
317
|
+
--pico-code-kbd-color: var(--pico-background-color);
|
|
318
|
+
--pico-form-element-background-color: rgb(251, 251.5, 252.25);
|
|
319
|
+
--pico-form-element-selected-background-color: #dfe3eb;
|
|
320
|
+
--pico-form-element-border-color: #cfd5e2;
|
|
321
|
+
--pico-form-element-color: #23262c;
|
|
322
|
+
--pico-form-element-placeholder-color: var(--pico-muted-color);
|
|
323
|
+
--pico-form-element-active-background-color: #fff;
|
|
324
|
+
--pico-form-element-active-border-color: var(--pico-primary-border);
|
|
325
|
+
--pico-form-element-focus-color: var(--pico-primary-border);
|
|
326
|
+
--pico-form-element-disabled-opacity: 0.5;
|
|
327
|
+
--pico-form-element-invalid-border-color: rgb(183.5, 105.5, 106.5);
|
|
328
|
+
--pico-form-element-invalid-active-border-color: rgb(200.25, 79.25, 72.25);
|
|
329
|
+
--pico-form-element-invalid-focus-color: var(--pico-form-element-invalid-active-border-color);
|
|
330
|
+
--pico-form-element-valid-border-color: rgb(76, 154.5, 137.5);
|
|
331
|
+
--pico-form-element-valid-active-border-color: rgb(39, 152.75, 118.75);
|
|
332
|
+
--pico-form-element-valid-focus-color: var(--pico-form-element-valid-active-border-color);
|
|
333
|
+
--pico-switch-background-color: #bfc7d9;
|
|
334
|
+
--pico-switch-checked-background-color: var(--pico-primary-background);
|
|
335
|
+
--pico-switch-color: #fff;
|
|
336
|
+
--pico-switch-thumb-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
|
|
337
|
+
--pico-range-border-color: #dfe3eb;
|
|
338
|
+
--pico-range-active-border-color: #bfc7d9;
|
|
339
|
+
--pico-range-thumb-border-color: var(--pico-background-color);
|
|
340
|
+
--pico-range-thumb-color: var(--pico-secondary-background);
|
|
341
|
+
--pico-range-thumb-active-color: var(--pico-primary-background);
|
|
342
|
+
--pico-accordion-border-color: var(--pico-muted-border-color);
|
|
343
|
+
--pico-accordion-active-summary-color: var(--pico-primary-hover);
|
|
344
|
+
--pico-accordion-close-summary-color: var(--pico-color);
|
|
345
|
+
--pico-accordion-open-summary-color: var(--pico-muted-color);
|
|
346
|
+
--pico-card-background-color: var(--pico-background-color);
|
|
347
|
+
--pico-card-border-color: var(--pico-muted-border-color);
|
|
348
|
+
--pico-card-box-shadow: var(--pico-box-shadow);
|
|
349
|
+
--pico-card-sectioning-background-color: rgb(251, 251.5, 252.25);
|
|
350
|
+
--pico-dropdown-background-color: #fff;
|
|
351
|
+
--pico-dropdown-border-color: #eff1f4;
|
|
352
|
+
--pico-dropdown-box-shadow: var(--pico-box-shadow);
|
|
353
|
+
--pico-dropdown-color: var(--pico-color);
|
|
354
|
+
--pico-dropdown-hover-background-color: #eff1f4;
|
|
355
|
+
--pico-loading-spinner-opacity: 0.5;
|
|
356
|
+
--pico-modal-overlay-background-color: rgba(232, 234, 237, 0.75);
|
|
357
|
+
--pico-progress-background-color: #dfe3eb;
|
|
358
|
+
--pico-progress-color: var(--pico-primary-background);
|
|
359
|
+
--pico-tooltip-background-color: var(--pico-contrast-background);
|
|
360
|
+
--pico-tooltip-color: var(--pico-contrast-inverse);
|
|
361
|
+
--pico-icon-valid: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(76, 154.5, 137.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
|
|
362
|
+
--pico-icon-invalid: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(200.25, 79.25, 72.25)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='8' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'%3E%3C/line%3E%3C/svg%3E");
|
|
363
|
+
}
|
|
364
|
+
[data-theme="light"]
|
|
365
|
+
input:is(
|
|
366
|
+
[type="submit"],
|
|
367
|
+
[type="button"],
|
|
368
|
+
[type="reset"],
|
|
369
|
+
[type="checkbox"],
|
|
370
|
+
[type="radio"],
|
|
371
|
+
[type="file"]
|
|
372
|
+
),
|
|
373
|
+
:root:not([data-theme="dark"])
|
|
374
|
+
input:is(
|
|
375
|
+
[type="submit"],
|
|
376
|
+
[type="button"],
|
|
377
|
+
[type="reset"],
|
|
378
|
+
[type="checkbox"],
|
|
379
|
+
[type="radio"],
|
|
380
|
+
[type="file"]
|
|
381
|
+
),
|
|
382
|
+
:host(:not([data-theme="dark"]))
|
|
383
|
+
input:is(
|
|
384
|
+
[type="submit"],
|
|
385
|
+
[type="button"],
|
|
386
|
+
[type="reset"],
|
|
387
|
+
[type="checkbox"],
|
|
388
|
+
[type="radio"],
|
|
389
|
+
[type="file"]
|
|
390
|
+
) {
|
|
391
|
+
--pico-form-element-focus-color: var(--pico-primary-focus);
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
@media only screen and (prefers-color-scheme: dark) {
|
|
395
|
+
:root:not([data-theme]),
|
|
396
|
+
:host(:not([data-theme])) {
|
|
397
|
+
color-scheme: dark;
|
|
398
|
+
--pico-background-color: rgb(19, 22.5, 30.5);
|
|
399
|
+
--pico-color: #c2c7d0;
|
|
400
|
+
--pico-text-selection-color: rgba(1, 170, 255, 0.1875);
|
|
401
|
+
--pico-muted-color: #7b8495;
|
|
402
|
+
--pico-muted-border-color: #202632;
|
|
403
|
+
--pico-primary: #01aaff;
|
|
404
|
+
--pico-primary-background: #0172ad;
|
|
405
|
+
--pico-primary-border: var(--pico-primary-background);
|
|
406
|
+
--pico-primary-underline: rgba(1, 170, 255, 0.5);
|
|
407
|
+
--pico-primary-hover: #79c0ff;
|
|
408
|
+
--pico-primary-hover-background: #017fc0;
|
|
409
|
+
--pico-primary-hover-border: var(--pico-primary-hover-background);
|
|
410
|
+
--pico-primary-hover-underline: var(--pico-primary-hover);
|
|
411
|
+
--pico-primary-focus: rgba(1, 170, 255, 0.375);
|
|
412
|
+
--pico-primary-inverse: #fff;
|
|
413
|
+
--pico-secondary: #969eaf;
|
|
414
|
+
--pico-secondary-background: #525f7a;
|
|
415
|
+
--pico-secondary-border: var(--pico-secondary-background);
|
|
416
|
+
--pico-secondary-underline: rgba(150, 158, 175, 0.5);
|
|
417
|
+
--pico-secondary-hover: #b3b9c5;
|
|
418
|
+
--pico-secondary-hover-background: #5d6b89;
|
|
419
|
+
--pico-secondary-hover-border: var(--pico-secondary-hover-background);
|
|
420
|
+
--pico-secondary-hover-underline: var(--pico-secondary-hover);
|
|
421
|
+
--pico-secondary-focus: rgba(144, 158, 190, 0.25);
|
|
422
|
+
--pico-secondary-inverse: #fff;
|
|
423
|
+
--pico-contrast: #dfe3eb;
|
|
424
|
+
--pico-contrast-background: #eff1f4;
|
|
425
|
+
--pico-contrast-border: var(--pico-contrast-background);
|
|
426
|
+
--pico-contrast-underline: rgba(223, 227, 235, 0.5);
|
|
427
|
+
--pico-contrast-hover: #fff;
|
|
428
|
+
--pico-contrast-hover-background: #fff;
|
|
429
|
+
--pico-contrast-hover-border: var(--pico-contrast-hover-background);
|
|
430
|
+
--pico-contrast-hover-underline: var(--pico-contrast-hover);
|
|
431
|
+
--pico-contrast-focus: rgba(207, 213, 226, 0.25);
|
|
432
|
+
--pico-contrast-inverse: #000;
|
|
433
|
+
--pico-box-shadow:
|
|
434
|
+
0.0145rem 0.029rem 0.174rem rgba(7, 8.5, 12, 0.01698),
|
|
435
|
+
0.0335rem 0.067rem 0.402rem rgba(7, 8.5, 12, 0.024),
|
|
436
|
+
0.0625rem 0.125rem 0.75rem rgba(7, 8.5, 12, 0.03),
|
|
437
|
+
0.1125rem 0.225rem 1.35rem rgba(7, 8.5, 12, 0.036),
|
|
438
|
+
0.2085rem 0.417rem 2.502rem rgba(7, 8.5, 12, 0.04302),
|
|
439
|
+
0.5rem 1rem 6rem rgba(7, 8.5, 12, 0.06), 0 0 0 0.0625rem rgba(7, 8.5, 12, 0.015);
|
|
440
|
+
--pico-h1-color: #f0f1f3;
|
|
441
|
+
--pico-h2-color: #e0e3e7;
|
|
442
|
+
--pico-h3-color: #c2c7d0;
|
|
443
|
+
--pico-h4-color: #b3b9c5;
|
|
444
|
+
--pico-h5-color: #a4acba;
|
|
445
|
+
--pico-h6-color: #8891a4;
|
|
446
|
+
--pico-mark-background-color: #014063;
|
|
447
|
+
--pico-mark-color: #fff;
|
|
448
|
+
--pico-ins-color: #62af9a;
|
|
449
|
+
--pico-del-color: rgb(205.5, 126, 123);
|
|
450
|
+
--pico-blockquote-border-color: var(--pico-muted-border-color);
|
|
451
|
+
--pico-blockquote-footer-color: var(--pico-muted-color);
|
|
452
|
+
--pico-button-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
|
|
453
|
+
--pico-button-hover-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
|
|
454
|
+
--pico-table-border-color: var(--pico-muted-border-color);
|
|
455
|
+
--pico-table-row-stripped-background-color: rgba(111, 120, 135, 0.0375);
|
|
456
|
+
--pico-code-background-color: rgb(26, 30.5, 40.25);
|
|
457
|
+
--pico-code-color: #8891a4;
|
|
458
|
+
--pico-code-kbd-background-color: var(--pico-color);
|
|
459
|
+
--pico-code-kbd-color: var(--pico-background-color);
|
|
460
|
+
--pico-form-element-background-color: rgb(28, 33, 43.5);
|
|
461
|
+
--pico-form-element-selected-background-color: #2a3140;
|
|
462
|
+
--pico-form-element-border-color: #2a3140;
|
|
463
|
+
--pico-form-element-color: #e0e3e7;
|
|
464
|
+
--pico-form-element-placeholder-color: #8891a4;
|
|
465
|
+
--pico-form-element-active-background-color: rgb(26, 30.5, 40.25);
|
|
466
|
+
--pico-form-element-active-border-color: var(--pico-primary-border);
|
|
467
|
+
--pico-form-element-focus-color: var(--pico-primary-border);
|
|
468
|
+
--pico-form-element-disabled-opacity: 0.5;
|
|
469
|
+
--pico-form-element-invalid-border-color: rgb(149.5, 74, 80);
|
|
470
|
+
--pico-form-element-invalid-active-border-color: rgb(183.25, 63.5, 59);
|
|
471
|
+
--pico-form-element-invalid-focus-color: var(--pico-form-element-invalid-active-border-color);
|
|
472
|
+
--pico-form-element-valid-border-color: #2a7b6f;
|
|
473
|
+
--pico-form-element-valid-active-border-color: rgb(22, 137, 105.5);
|
|
474
|
+
--pico-form-element-valid-focus-color: var(--pico-form-element-valid-active-border-color);
|
|
475
|
+
--pico-switch-background-color: #333c4e;
|
|
476
|
+
--pico-switch-checked-background-color: var(--pico-primary-background);
|
|
477
|
+
--pico-switch-color: #fff;
|
|
478
|
+
--pico-switch-thumb-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
|
|
479
|
+
--pico-range-border-color: #202632;
|
|
480
|
+
--pico-range-active-border-color: #2a3140;
|
|
481
|
+
--pico-range-thumb-border-color: var(--pico-background-color);
|
|
482
|
+
--pico-range-thumb-color: var(--pico-secondary-background);
|
|
483
|
+
--pico-range-thumb-active-color: var(--pico-primary-background);
|
|
484
|
+
--pico-accordion-border-color: var(--pico-muted-border-color);
|
|
485
|
+
--pico-accordion-active-summary-color: var(--pico-primary-hover);
|
|
486
|
+
--pico-accordion-close-summary-color: var(--pico-color);
|
|
487
|
+
--pico-accordion-open-summary-color: var(--pico-muted-color);
|
|
488
|
+
--pico-card-background-color: #181c25;
|
|
489
|
+
--pico-card-border-color: var(--pico-card-background-color);
|
|
490
|
+
--pico-card-box-shadow: var(--pico-box-shadow);
|
|
491
|
+
--pico-card-sectioning-background-color: rgb(26, 30.5, 40.25);
|
|
492
|
+
--pico-dropdown-background-color: #181c25;
|
|
493
|
+
--pico-dropdown-border-color: #202632;
|
|
494
|
+
--pico-dropdown-box-shadow: var(--pico-box-shadow);
|
|
495
|
+
--pico-dropdown-color: var(--pico-color);
|
|
496
|
+
--pico-dropdown-hover-background-color: #202632;
|
|
497
|
+
--pico-loading-spinner-opacity: 0.5;
|
|
498
|
+
--pico-modal-overlay-background-color: rgba(7.5, 8.5, 10, 0.75);
|
|
499
|
+
--pico-progress-background-color: #202632;
|
|
500
|
+
--pico-progress-color: var(--pico-primary-background);
|
|
501
|
+
--pico-tooltip-background-color: var(--pico-contrast-background);
|
|
502
|
+
--pico-tooltip-color: var(--pico-contrast-inverse);
|
|
503
|
+
--pico-icon-valid: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(42, 123, 111)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
|
|
504
|
+
--pico-icon-invalid: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(149.5, 74, 80)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='8' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'%3E%3C/line%3E%3C/svg%3E");
|
|
505
|
+
}
|
|
506
|
+
:root:not([data-theme])
|
|
507
|
+
input:is(
|
|
508
|
+
[type="submit"],
|
|
509
|
+
[type="button"],
|
|
510
|
+
[type="reset"],
|
|
511
|
+
[type="checkbox"],
|
|
512
|
+
[type="radio"],
|
|
513
|
+
[type="file"]
|
|
514
|
+
),
|
|
515
|
+
:host(:not([data-theme]))
|
|
516
|
+
input:is(
|
|
517
|
+
[type="submit"],
|
|
518
|
+
[type="button"],
|
|
519
|
+
[type="reset"],
|
|
520
|
+
[type="checkbox"],
|
|
521
|
+
[type="radio"],
|
|
522
|
+
[type="file"]
|
|
523
|
+
) {
|
|
524
|
+
--pico-form-element-focus-color: var(--pico-primary-focus);
|
|
525
|
+
}
|
|
526
|
+
:root:not([data-theme]) details summary[role="button"].contrast:not(.outline)::after,
|
|
527
|
+
:host(:not([data-theme])) details summary[role="button"].contrast:not(.outline)::after {
|
|
528
|
+
filter: brightness(0);
|
|
529
|
+
}
|
|
530
|
+
:root:not([data-theme])
|
|
531
|
+
[aria-busy="true"]:not(input, select, textarea).contrast:is(
|
|
532
|
+
button,
|
|
533
|
+
[type="submit"],
|
|
534
|
+
[type="button"],
|
|
535
|
+
[type="reset"],
|
|
536
|
+
[role="button"]
|
|
537
|
+
):not(.outline)::before,
|
|
538
|
+
:host(:not([data-theme]))
|
|
539
|
+
[aria-busy="true"]:not(input, select, textarea).contrast:is(
|
|
540
|
+
button,
|
|
541
|
+
[type="submit"],
|
|
542
|
+
[type="button"],
|
|
543
|
+
[type="reset"],
|
|
544
|
+
[role="button"]
|
|
545
|
+
):not(.outline)::before {
|
|
546
|
+
filter: brightness(0);
|
|
547
|
+
}
|
|
548
|
+
}
|
|
549
|
+
[data-theme="dark"] {
|
|
550
|
+
color-scheme: dark;
|
|
551
|
+
--pico-background-color: rgb(19, 22.5, 30.5);
|
|
552
|
+
--pico-color: #c2c7d0;
|
|
553
|
+
--pico-text-selection-color: rgba(1, 170, 255, 0.1875);
|
|
554
|
+
--pico-muted-color: #7b8495;
|
|
555
|
+
--pico-muted-border-color: #202632;
|
|
556
|
+
--pico-primary: #01aaff;
|
|
557
|
+
--pico-primary-background: #0172ad;
|
|
558
|
+
--pico-primary-border: var(--pico-primary-background);
|
|
559
|
+
--pico-primary-underline: rgba(1, 170, 255, 0.5);
|
|
560
|
+
--pico-primary-hover: #79c0ff;
|
|
561
|
+
--pico-primary-hover-background: #017fc0;
|
|
562
|
+
--pico-primary-hover-border: var(--pico-primary-hover-background);
|
|
563
|
+
--pico-primary-hover-underline: var(--pico-primary-hover);
|
|
564
|
+
--pico-primary-focus: rgba(1, 170, 255, 0.375);
|
|
565
|
+
--pico-primary-inverse: #fff;
|
|
566
|
+
--pico-secondary: #969eaf;
|
|
567
|
+
--pico-secondary-background: #525f7a;
|
|
568
|
+
--pico-secondary-border: var(--pico-secondary-background);
|
|
569
|
+
--pico-secondary-underline: rgba(150, 158, 175, 0.5);
|
|
570
|
+
--pico-secondary-hover: #b3b9c5;
|
|
571
|
+
--pico-secondary-hover-background: #5d6b89;
|
|
572
|
+
--pico-secondary-hover-border: var(--pico-secondary-hover-background);
|
|
573
|
+
--pico-secondary-hover-underline: var(--pico-secondary-hover);
|
|
574
|
+
--pico-secondary-focus: rgba(144, 158, 190, 0.25);
|
|
575
|
+
--pico-secondary-inverse: #fff;
|
|
576
|
+
--pico-contrast: #dfe3eb;
|
|
577
|
+
--pico-contrast-background: #eff1f4;
|
|
578
|
+
--pico-contrast-border: var(--pico-contrast-background);
|
|
579
|
+
--pico-contrast-underline: rgba(223, 227, 235, 0.5);
|
|
580
|
+
--pico-contrast-hover: #fff;
|
|
581
|
+
--pico-contrast-hover-background: #fff;
|
|
582
|
+
--pico-contrast-hover-border: var(--pico-contrast-hover-background);
|
|
583
|
+
--pico-contrast-hover-underline: var(--pico-contrast-hover);
|
|
584
|
+
--pico-contrast-focus: rgba(207, 213, 226, 0.25);
|
|
585
|
+
--pico-contrast-inverse: #000;
|
|
586
|
+
--pico-box-shadow:
|
|
587
|
+
0.0145rem 0.029rem 0.174rem rgba(7, 8.5, 12, 0.01698),
|
|
588
|
+
0.0335rem 0.067rem 0.402rem rgba(7, 8.5, 12, 0.024),
|
|
589
|
+
0.0625rem 0.125rem 0.75rem rgba(7, 8.5, 12, 0.03),
|
|
590
|
+
0.1125rem 0.225rem 1.35rem rgba(7, 8.5, 12, 0.036),
|
|
591
|
+
0.2085rem 0.417rem 2.502rem rgba(7, 8.5, 12, 0.04302), 0.5rem 1rem 6rem rgba(7, 8.5, 12, 0.06),
|
|
592
|
+
0 0 0 0.0625rem rgba(7, 8.5, 12, 0.015);
|
|
593
|
+
--pico-h1-color: #f0f1f3;
|
|
594
|
+
--pico-h2-color: #e0e3e7;
|
|
595
|
+
--pico-h3-color: #c2c7d0;
|
|
596
|
+
--pico-h4-color: #b3b9c5;
|
|
597
|
+
--pico-h5-color: #a4acba;
|
|
598
|
+
--pico-h6-color: #8891a4;
|
|
599
|
+
--pico-mark-background-color: #014063;
|
|
600
|
+
--pico-mark-color: #fff;
|
|
601
|
+
--pico-ins-color: #62af9a;
|
|
602
|
+
--pico-del-color: rgb(205.5, 126, 123);
|
|
603
|
+
--pico-blockquote-border-color: var(--pico-muted-border-color);
|
|
604
|
+
--pico-blockquote-footer-color: var(--pico-muted-color);
|
|
605
|
+
--pico-button-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
|
|
606
|
+
--pico-button-hover-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
|
|
607
|
+
--pico-table-border-color: var(--pico-muted-border-color);
|
|
608
|
+
--pico-table-row-stripped-background-color: rgba(111, 120, 135, 0.0375);
|
|
609
|
+
--pico-code-background-color: rgb(26, 30.5, 40.25);
|
|
610
|
+
--pico-code-color: #8891a4;
|
|
611
|
+
--pico-code-kbd-background-color: var(--pico-color);
|
|
612
|
+
--pico-code-kbd-color: var(--pico-background-color);
|
|
613
|
+
--pico-form-element-background-color: rgb(28, 33, 43.5);
|
|
614
|
+
--pico-form-element-selected-background-color: #2a3140;
|
|
615
|
+
--pico-form-element-border-color: #2a3140;
|
|
616
|
+
--pico-form-element-color: #e0e3e7;
|
|
617
|
+
--pico-form-element-placeholder-color: #8891a4;
|
|
618
|
+
--pico-form-element-active-background-color: rgb(26, 30.5, 40.25);
|
|
619
|
+
--pico-form-element-active-border-color: var(--pico-primary-border);
|
|
620
|
+
--pico-form-element-focus-color: var(--pico-primary-border);
|
|
621
|
+
--pico-form-element-disabled-opacity: 0.5;
|
|
622
|
+
--pico-form-element-invalid-border-color: rgb(149.5, 74, 80);
|
|
623
|
+
--pico-form-element-invalid-active-border-color: rgb(183.25, 63.5, 59);
|
|
624
|
+
--pico-form-element-invalid-focus-color: var(--pico-form-element-invalid-active-border-color);
|
|
625
|
+
--pico-form-element-valid-border-color: #2a7b6f;
|
|
626
|
+
--pico-form-element-valid-active-border-color: rgb(22, 137, 105.5);
|
|
627
|
+
--pico-form-element-valid-focus-color: var(--pico-form-element-valid-active-border-color);
|
|
628
|
+
--pico-switch-background-color: #333c4e;
|
|
629
|
+
--pico-switch-checked-background-color: var(--pico-primary-background);
|
|
630
|
+
--pico-switch-color: #fff;
|
|
631
|
+
--pico-switch-thumb-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
|
|
632
|
+
--pico-range-border-color: #202632;
|
|
633
|
+
--pico-range-active-border-color: #2a3140;
|
|
634
|
+
--pico-range-thumb-border-color: var(--pico-background-color);
|
|
635
|
+
--pico-range-thumb-color: var(--pico-secondary-background);
|
|
636
|
+
--pico-range-thumb-active-color: var(--pico-primary-background);
|
|
637
|
+
--pico-accordion-border-color: var(--pico-muted-border-color);
|
|
638
|
+
--pico-accordion-active-summary-color: var(--pico-primary-hover);
|
|
639
|
+
--pico-accordion-close-summary-color: var(--pico-color);
|
|
640
|
+
--pico-accordion-open-summary-color: var(--pico-muted-color);
|
|
641
|
+
--pico-card-background-color: #181c25;
|
|
642
|
+
--pico-card-border-color: var(--pico-card-background-color);
|
|
643
|
+
--pico-card-box-shadow: var(--pico-box-shadow);
|
|
644
|
+
--pico-card-sectioning-background-color: rgb(26, 30.5, 40.25);
|
|
645
|
+
--pico-dropdown-background-color: #181c25;
|
|
646
|
+
--pico-dropdown-border-color: #202632;
|
|
647
|
+
--pico-dropdown-box-shadow: var(--pico-box-shadow);
|
|
648
|
+
--pico-dropdown-color: var(--pico-color);
|
|
649
|
+
--pico-dropdown-hover-background-color: #202632;
|
|
650
|
+
--pico-loading-spinner-opacity: 0.5;
|
|
651
|
+
--pico-modal-overlay-background-color: rgba(7.5, 8.5, 10, 0.75);
|
|
652
|
+
--pico-progress-background-color: #202632;
|
|
653
|
+
--pico-progress-color: var(--pico-primary-background);
|
|
654
|
+
--pico-tooltip-background-color: var(--pico-contrast-background);
|
|
655
|
+
--pico-tooltip-color: var(--pico-contrast-inverse);
|
|
656
|
+
--pico-icon-valid: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(42, 123, 111)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
|
|
657
|
+
--pico-icon-invalid: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(149.5, 74, 80)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='8' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'%3E%3C/line%3E%3C/svg%3E");
|
|
658
|
+
}
|
|
659
|
+
[data-theme="dark"]
|
|
660
|
+
input:is(
|
|
661
|
+
[type="submit"],
|
|
662
|
+
[type="button"],
|
|
663
|
+
[type="reset"],
|
|
664
|
+
[type="checkbox"],
|
|
665
|
+
[type="radio"],
|
|
666
|
+
[type="file"]
|
|
667
|
+
) {
|
|
668
|
+
--pico-form-element-focus-color: var(--pico-primary-focus);
|
|
669
|
+
}
|
|
670
|
+
[data-theme="dark"] details summary[role="button"].contrast:not(.outline)::after {
|
|
671
|
+
filter: brightness(0);
|
|
672
|
+
}
|
|
673
|
+
[data-theme="dark"]
|
|
674
|
+
[aria-busy="true"]:not(input, select, textarea).contrast:is(
|
|
675
|
+
button,
|
|
676
|
+
[type="submit"],
|
|
677
|
+
[type="button"],
|
|
678
|
+
[type="reset"],
|
|
679
|
+
[role="button"]
|
|
680
|
+
):not(.outline)::before {
|
|
681
|
+
filter: brightness(0);
|
|
682
|
+
}
|
|
683
|
+
|
|
684
|
+
progress,
|
|
685
|
+
[type="checkbox"],
|
|
686
|
+
[type="radio"],
|
|
687
|
+
[type="range"] {
|
|
688
|
+
accent-color: var(--pico-primary);
|
|
689
|
+
}
|