vunor 0.1.3 → 0.1.4

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.
Files changed (2) hide show
  1. package/dist/theme.mjs +24 -0
  2. package/package.json +1 -1
package/dist/theme.mjs CHANGED
@@ -311,6 +311,30 @@ const c8 = defineShortcuts({
311
311
  },
312
312
  "c8-outlined-hover": "c8-flat-hover",
313
313
  "c8-outlined-active": "c8-flat-active",
314
+ "c8-chrome": {
315
+ "": "rounded-base border bg-transparent current-text-scope-dark-2 current-icon-scope-dark-2 current-border-grey-500 text-current border-current icon-current/80",
316
+ "dark:": "current-text-scope-light-2 current-icon-scope-light-2",
317
+ "hover:": "c8-chrome-hover",
318
+ "focus-visible:": "c8-chrome-hover",
319
+ "data-[highlighted]:": "c8-chrome-hover",
320
+ "active:": "c8-chrome-active",
321
+ "data-[active]:": "c8-chrome-active",
322
+ "data-[selected=true]:": "c8-chrome-selected",
323
+ "aria-[selected=true]:": "c8-chrome-selected",
324
+ "aria-[pressed=true]:": "c8-chrome-selected"
325
+ },
326
+ "c8-chrome-hover": {
327
+ "not-([disabled]):": "current-bg-scope-light-1 bg-current",
328
+ "dark:not-([disabled]):": "current-bg-scope-dark-1"
329
+ },
330
+ "c8-chrome-active": {
331
+ "not-([disabled]):": "current-bg-scope-light-2 bg-current",
332
+ "dark:not-([disabled]):": "current-bg-scope-dark-2"
333
+ },
334
+ "c8-chrome-selected": {
335
+ "": "current-bg-scope-light-1 bg-current current-text-scope-color-500 text-current current-icon-scope-color-500 icon-current/100",
336
+ "dark:": "current-bg-scope-dark-1 current-text-scope-color-400 current-icon-scope-color-400"
337
+ },
314
338
  "c8-light": {
315
339
  "": "current-bg-scope-color-500 rounded-base current-text-scope-color-500 current-icon-scope-color-500 bg-current/10 text-current icon-current/80",
316
340
  "dark:": "current-text-scope-color-400 current-icon-scope-color-400",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vunor",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "files": [
5
5
  "dist"
6
6
  ],