@zoneflow/themes 0.0.19 → 0.0.20
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/presets.js +7 -0
- package/package.json +3 -3
package/dist/presets.js
CHANGED
|
@@ -361,6 +361,9 @@ const lightPreset = {
|
|
|
361
361
|
buttonBorder: "1px solid rgba(148, 163, 184, 0.22)",
|
|
362
362
|
buttonText: "#0f172a",
|
|
363
363
|
buttonDisabledText: "rgba(100, 116, 139, 0.48)",
|
|
364
|
+
dangerButtonBackground: "#dc2626",
|
|
365
|
+
dangerButtonBorder: "1px solid rgba(239, 68, 68, 0.42)",
|
|
366
|
+
dangerButtonText: "#fff7f7",
|
|
364
367
|
},
|
|
365
368
|
dialog: {
|
|
366
369
|
background: "rgba(255, 255, 255, 0.98)",
|
|
@@ -839,6 +842,10 @@ const monoPreset = {
|
|
|
839
842
|
buttonBackground: "#f5f5f5",
|
|
840
843
|
buttonBorder: "1px solid rgba(23, 23, 23, 0.16)",
|
|
841
844
|
buttonText: "#111111",
|
|
845
|
+
buttonDisabledText: "rgba(82, 82, 82, 0.5)",
|
|
846
|
+
dangerButtonBackground: "#111111",
|
|
847
|
+
dangerButtonBorder: "1px solid rgba(23, 23, 23, 0.52)",
|
|
848
|
+
dangerButtonText: "#ffffff",
|
|
842
849
|
},
|
|
843
850
|
connectTarget: {
|
|
844
851
|
border: "2px solid rgba(23, 23, 23, 0.92)",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zoneflow/themes",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.20",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Preset renderer and editor themes for Zoneflow.",
|
|
6
6
|
"type": "module",
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"dist"
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@zoneflow/react": "0.0.
|
|
23
|
-
"@zoneflow/renderer-dom": "0.0.
|
|
22
|
+
"@zoneflow/react": "0.0.20",
|
|
23
|
+
"@zoneflow/renderer-dom": "0.0.20"
|
|
24
24
|
},
|
|
25
25
|
"scripts": {
|
|
26
26
|
"build": "tsc -p tsconfig.json",
|