@likec4/styles 1.46.1 → 1.46.3

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/preset.d.mts CHANGED
@@ -1174,7 +1174,10 @@ declare const theme: {
1174
1174
  body: {
1175
1175
  DEFAULT: {
1176
1176
  description: string;
1177
- value: "var(--mantine-color-body)";
1177
+ value: {
1178
+ base: "var(--mantine-color-body)";
1179
+ _dark: "var(--mantine-color-dark-6)";
1180
+ };
1178
1181
  };
1179
1182
  };
1180
1183
  border: {
package/dist/preset.mjs CHANGED
@@ -6841,7 +6841,10 @@ const semanticTokens = defineSemanticTokens({
6841
6841
  body: {
6842
6842
  DEFAULT: {
6843
6843
  description: "LikeC4 overlay body color",
6844
- value: mantine.colors.body
6844
+ value: {
6845
+ base: mantine.colors.body,
6846
+ _dark: mantine.colors.dark[6]
6847
+ }
6845
6848
  }
6846
6849
  },
6847
6850
  border: {
@@ -9736,7 +9736,7 @@ const tokens = {
9736
9736
  "variable": "var(--colors-likec4-overlay-backdrop)"
9737
9737
  },
9738
9738
  "colors.likec4.overlay.body": {
9739
- "value": "var(--mantine-color-body)",
9739
+ "value": "var(--colors-likec4-overlay-body)",
9740
9740
  "variable": "var(--colors-likec4-overlay-body)"
9741
9741
  },
9742
9742
  "colors.likec4.overlay.border": {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@likec4/styles",
3
3
  "description": "Shared PandaCSS preset and generated styles, used in LikeC4",
4
4
  "license": "MIT",
5
- "version": "1.46.1",
5
+ "version": "1.46.3",
6
6
  "bugs": "https://github.com/likec4/likec4/issues",
7
7
  "homepage": "https://likec4.dev",
8
8
  "author": "Denis Davydkov <denis@davydkov.com>",
@@ -85,7 +85,7 @@
85
85
  }
86
86
  },
87
87
  "devDependencies": {
88
- "@types/node": "~22.19.1",
88
+ "@types/node": "~22.19.3",
89
89
  "@pandabox/panda-plugins": "^0.0.8",
90
90
  "@pandabox/utils": "^0.0.5",
91
91
  "@pandabox/unplugin": "^0.2.2",
@@ -95,12 +95,12 @@
95
95
  "@types/react": "19.2.7",
96
96
  "@types/react-dom": "19.2.3",
97
97
  "postcss": "8.5.6",
98
- "nano-spawn": "^1.0.3",
98
+ "nano-spawn": "^2.0.0",
99
99
  "unbuild": "3.5.0",
100
100
  "typescript": "5.9.3",
101
- "@likec4/style-preset": "1.46.1",
102
- "@likec4/devops": "1.42.0",
103
- "@likec4/tsconfig": "1.46.1"
101
+ "@likec4/style-preset": "1.46.3",
102
+ "@likec4/tsconfig": "1.46.1",
103
+ "@likec4/devops": "1.42.0"
104
104
  },
105
105
  "scripts": {
106
106
  "typecheck": "tsc --build --verbose",