@fest-lib/veela 0.1.17 → 0.1.19
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 +93 -504
- package/dist/veela.js +2 -2
- package/package.json +2 -2
- package/src/scss/core/misc/_tokens.scss +14 -14
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fest-lib/veela",
|
|
3
3
|
"description": "fest-lib Veela: CSS tokens, --c2 color functions, Agate.UX, SCSS + runtime loaders",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.19",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"sideEffects": true,
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"docs:md:clean": "rm -rf ./docs-md && typedoc --options ./typedoc.md.json",
|
|
72
72
|
"preview": "vite preview",
|
|
73
73
|
"release": "PUPPETEER_SKIP_DOWNLOAD=1 npm run build:publish && npm publish --access public --ignore-scripts",
|
|
74
|
-
"publish": "npm run release"
|
|
74
|
+
"publish": "node ../scripts/bump-patch-version.mjs && npm run release"
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
77
|
"cssnano": ">=7.1.0",
|
|
@@ -844,16 +844,16 @@ $selectors: $md-roots;
|
|
|
844
844
|
* is the single value source. Shells keep only theme/state overrides and
|
|
845
845
|
* documented offline/SSR hex fallbacks for when veela is not loaded.
|
|
846
846
|
*/
|
|
847
|
-
--shell-bg: var(--color-surface);
|
|
848
|
-
--shell-fg: var(--color-on-surface);
|
|
849
|
-
--shell-nav-bg: var(--color-surface-container-high);
|
|
850
|
-
--shell-nav-fg: var(--color-on-surface);
|
|
851
|
-
--shell-nav-border: var(--color-outline-variant);
|
|
852
|
-
--shell-btn-hover: var(--color-surface-container);
|
|
853
|
-
--shell-btn-active-bg: color-mix(in oklab, var(--color-primary) 18%, var(--color-surface));
|
|
854
|
-
--shell-btn-active-fg: var(--color-on-surface);
|
|
855
|
-
--shell-status-bg: var(--color-surface-container-low);
|
|
856
|
-
--shell-status-fg: var(--color-on-surface);
|
|
847
|
+
--shell-bg: var(--sv-surface-2, var(--color-surface));
|
|
848
|
+
--shell-fg: var(--sv-on-surface, var(--color-on-surface));
|
|
849
|
+
--shell-nav-bg: var(--sv-surface-2, var(--color-surface-container-high));
|
|
850
|
+
--shell-nav-fg: var(--sv-on-surface, var(--color-on-surface));
|
|
851
|
+
--shell-nav-border: var(--sv-outline-variant, var(--color-outline-variant));
|
|
852
|
+
--shell-btn-hover: var(--sv-surface-2, var(--color-surface-container));
|
|
853
|
+
--shell-btn-active-bg: color-mix(in oklab, var(--color-primary) 18%, var(--sv-surface-2, var(--color-surface)));
|
|
854
|
+
--shell-btn-active-fg: var(--sv-on-surface, var(--color-on-surface));
|
|
855
|
+
--shell-status-bg: var(--sv-surface-1, var(--color-surface-container-low));
|
|
856
|
+
--shell-status-fg: var(--sv-on-surface, var(--color-on-surface));
|
|
857
857
|
|
|
858
858
|
/* ── Faint shell tokens (subsystem boot shells) ───────────────────────
|
|
859
859
|
* Derived from canonical `--color-*`; previously duplicated as
|
|
@@ -886,10 +886,10 @@ $selectors: $md-roots;
|
|
|
886
886
|
* only theme-pinned overrides (`html[data-theme]`) and shadow-DOM self-sufficiency
|
|
887
887
|
* fallbacks at use sites (`var(--sv-*, light-dark(...))`).
|
|
888
888
|
*/
|
|
889
|
-
--sv-bg: var(--color-surface-container-low, light-dark(#eef1f6, #0f1318));
|
|
890
|
-
--sv-fg: var(--color-on-surface, light-dark(#12151a, #e8edf2));
|
|
891
|
-
--sv-muted: var(--color-on-surface-variant, light-dark(#5c6570, #a8b0bc));
|
|
892
|
-
--sv-outline: var(--color-outline-variant, light-dark(#c5cdd8, #3d4755));
|
|
889
|
+
--sv-bg: var(--sv-surface-2, var(--color-surface-container-low, light-dark(#eef1f6, #0f1318)));
|
|
890
|
+
--sv-fg: var(--sv-on-surface, var(--color-on-surface, light-dark(#12151a, #e8edf2)));
|
|
891
|
+
--sv-muted: var(--sv-on-surface-variant, var(--color-on-surface-variant, light-dark(#5c6570, #a8b0bc)));
|
|
892
|
+
--sv-outline: var(--sv-outline-variant, var(--color-outline-variant, light-dark(#c5cdd8, #3d4755)));
|
|
893
893
|
--sv-surface-1: var(--color-surface-container-low, light-dark(#ffffff, #171c24));
|
|
894
894
|
--sv-surface-2: var(--color-surface-container, light-dark(#f4f6fa, #1c232d));
|
|
895
895
|
--sv-primary: var(--base-color, var(--color-primary, #5a9ec8));
|