vunor 0.1.4 → 0.1.5
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/dist/theme.mjs +11 -9
- package/package.json +1 -1
package/dist/theme.mjs
CHANGED
|
@@ -278,24 +278,27 @@ const c8 = defineShortcuts({
|
|
|
278
278
|
"data-[active]:": "c8-filled-active"
|
|
279
279
|
},
|
|
280
280
|
"c8-filled-hover": {
|
|
281
|
-
"not-([disabled]):": "current-bg-scope-color-400",
|
|
282
|
-
"dark:not-([disabled]):": "current-bg-scope-color-600"
|
|
283
|
-
},
|
|
284
|
-
"c8-filled-active": {
|
|
285
281
|
"not-([disabled]):": "current-bg-scope-color-600",
|
|
286
282
|
"dark:not-([disabled]):": "current-bg-scope-color-400"
|
|
287
283
|
},
|
|
284
|
+
"c8-filled-active": {
|
|
285
|
+
"not-([disabled]):": "current-bg-scope-color-700",
|
|
286
|
+
"dark:not-([disabled]):": "current-bg-scope-color-300"
|
|
287
|
+
},
|
|
288
288
|
"c8-flat": {
|
|
289
289
|
"": "current-bg-scope-color-500 rounded-base current-text-black current-icon-black bg-current/0 text-current/80 icon-current/50",
|
|
290
290
|
"dark:": "current-text-white current-icon-white",
|
|
291
291
|
"hover:": "c8-flat-hover",
|
|
292
292
|
"focus-visible:": "c8-flat-hover",
|
|
293
293
|
"data-[highlighted]:": "c8-flat-hover",
|
|
294
|
+
"active:": "c8-flat-active",
|
|
295
|
+
"data-[active]:": "c8-flat-active",
|
|
294
296
|
"data-[selected=true]:": "c8-flat-selected",
|
|
295
297
|
"aria-[selected=true]:": "c8-flat-selected",
|
|
296
298
|
"aria-[pressed=true]:": "c8-flat-selected"
|
|
297
299
|
},
|
|
298
|
-
"c8-flat-hover": { "not-([disabled]):": "bg-current/
|
|
300
|
+
"c8-flat-hover": { "not-([disabled]):": "bg-current/10" },
|
|
301
|
+
"c8-flat-active": { "not-([disabled]):": "bg-current/15" },
|
|
299
302
|
"c8-flat-selected": {
|
|
300
303
|
"": "c8-flat-hover current-text-scope-color-500 text-current current-icon-scope-color-500 icon-current/100",
|
|
301
304
|
"dark:": "current-text-scope-color-400 current-icon-scope-color-400"
|
|
@@ -312,8 +315,7 @@ const c8 = defineShortcuts({
|
|
|
312
315
|
"c8-outlined-hover": "c8-flat-hover",
|
|
313
316
|
"c8-outlined-active": "c8-flat-active",
|
|
314
317
|
"c8-chrome": {
|
|
315
|
-
"": "rounded-base border
|
|
316
|
-
"dark:": "current-text-scope-light-2 current-icon-scope-light-2",
|
|
318
|
+
"": "surface-0 rounded-base border",
|
|
317
319
|
"hover:": "c8-chrome-hover",
|
|
318
320
|
"focus-visible:": "c8-chrome-hover",
|
|
319
321
|
"data-[highlighted]:": "c8-chrome-hover",
|
|
@@ -347,8 +349,8 @@ const c8 = defineShortcuts({
|
|
|
347
349
|
"aria-[selected=true]:": "c8-light-hover",
|
|
348
350
|
"aria-[pressed=true]:": "c8-light-hover"
|
|
349
351
|
},
|
|
350
|
-
"c8-light-hover": { "not-([disabled]):": "bg-current/
|
|
351
|
-
"c8-light-active": { "not-([disabled]):": "bg-current/
|
|
352
|
+
"c8-light-hover": { "not-([disabled]):": "bg-current/20" },
|
|
353
|
+
"c8-light-active": { "not-([disabled]):": "bg-current/30" }
|
|
352
354
|
});
|
|
353
355
|
//#endregion
|
|
354
356
|
//#region src/theme/shortcuts/i8.ts
|