@techsio/ui-kit 0.12.0 → 0.14.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/dist/.storybook/main.d.ts.map +1 -1
- package/dist/.storybook/preview.d.ts.map +1 -1
- package/dist/src/theme/theme-config.d.ts +41 -0
- package/dist/src/theme/theme-config.d.ts.map +1 -0
- package/dist/src/theme/theme-provider.d.ts +37 -0
- package/dist/src/theme/theme-provider.d.ts.map +1 -0
- package/dist/src/theme/theme-toggle.d.ts +4 -0
- package/dist/src/theme/theme-toggle.d.ts.map +1 -0
- package/dist/theme/theme-config.js +46 -0
- package/dist/theme/theme-provider.js +101 -0
- package/dist/theme/theme-toggle.js +71 -0
- package/package.json +13 -10
- package/src/tokens/_tokens-base.css +6 -0
- package/src/tokens/figma/brand-overrides.css +49 -0
- package/src/tokens/figma/dark/variables.css +1 -1
- package/src/tokens/figma/light/variables.css +1 -1
- package/src/tokens/figma/neo/variables.css +1792 -0
- package/src/tokens/figma/neo-dark/variables.css +1792 -0
- package/src/tokens/figma/variables.css +4 -3
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Unified Figma tokens — light + dark merged into
|
|
2
|
+
* Unified Figma tokens — base brand, light + dark merged into @theme static.
|
|
3
3
|
* Generated by merge-figma-themes.mjs. DO NOT EDIT BY HAND.
|
|
4
4
|
*
|
|
5
5
|
* - Tokens identical in both modes: single value.
|
|
6
6
|
* - Tokens that differ: light-dark(L, D).
|
|
7
7
|
*
|
|
8
8
|
* `@theme static` makes Tailwind v4 generate utilities automatically.
|
|
9
|
-
* `light-dark()` follows the document's `color-scheme`, which
|
|
10
|
-
*
|
|
9
|
+
* `light-dark()` follows the document's `color-scheme`, which
|
|
10
|
+
* _tokens-base.css manages via :is(.dark, .always-dark) selectors.
|
|
11
|
+
* Non-base brands live in brand-overrides.css (imported after this).
|
|
11
12
|
*/
|
|
12
13
|
|
|
13
14
|
@theme static {
|