@intechstudio/grid-uikit 1.20260825.1204 → 1.20260901.1149

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/theme.css CHANGED
@@ -46,18 +46,13 @@
46
46
  --border-thickness: 1px;
47
47
  }
48
48
 
49
- html[color-scheme="moss"] {
50
- --foreground: #24352c;
51
- --background: #e1ebdf;
52
- --shadow: #8ca08d;
49
+ html[color-scheme="light"] {
50
+ --foreground: #1f1f1f;
51
+ --background: #e0e0e0;
52
+ --shadow: #787878;
53
53
 
54
- --border: #6e8473;
55
- --accent: #16735f;
56
- --focus: #16735f80;
57
- --error: #af4355;
58
-
59
- --foreground-disabled: #5c715f;
60
- --background-soft: #b7c9b5;
54
+ --border: #a0a0a0;
55
+ --focus: #0000006a;
61
56
 
62
57
  --popover-background: color-mix(
63
58
  in srgb,
@@ -68,49 +63,3 @@ html[color-scheme="moss"] {
68
63
  --popover-selection: var(--background-soft);
69
64
  --popover-reference: var(--background-muted);
70
65
  }
71
-
72
- html[color-scheme="sunset"] {
73
- --foreground: #30194d;
74
- --background: #fffaf2;
75
- --shadow: #76519a;
76
-
77
- --border: #69458b;
78
- --accent: #e76f2d;
79
- --focus: #69458b80;
80
- --error: #bd3b4c;
81
-
82
- --foreground-disabled: #c7bcd2;
83
- --background-soft: #d2cac0;
84
-
85
- --popover-background: color-mix(
86
- in srgb,
87
- var(--background),
88
- rgba(255, 255, 255, 1) 78%
89
- );
90
-
91
- --popover-selection: var(--background-soft);
92
- --popover-reference: var(--background-muted);
93
- }
94
-
95
- html[color-scheme="icy"] {
96
- --foreground: #000000;
97
- --background: #ffffff;
98
- --shadow: #3d5899;
99
-
100
- --border: #5d8d9b;
101
- --accent: #087ea4;
102
- --focus: #087ea480;
103
- --error: #b74c61;
104
-
105
- --foreground-disabled: #818282;
106
- --background-soft: #d1f6fe;
107
-
108
- --popover-background: color-mix(
109
- in srgb,
110
- var(--background),
111
- rgba(255, 255, 255, 1) 82%
112
- );
113
-
114
- --popover-selection: var(--background-soft);
115
- --popover-reference: var(--background-muted);
116
- }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intechstudio/grid-uikit",
3
- "version": "1.20260825.1204",
3
+ "version": "1.20260901.1149",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/intechstudio/grid-uikit.git"
package/src/lib/theme.css CHANGED
@@ -46,18 +46,13 @@
46
46
  --border-thickness: 1px;
47
47
  }
48
48
 
49
- html[color-scheme="moss"] {
50
- --foreground: #24352c;
51
- --background: #e1ebdf;
52
- --shadow: #8ca08d;
49
+ html[color-scheme="light"] {
50
+ --foreground: #1f1f1f;
51
+ --background: #e0e0e0;
52
+ --shadow: #787878;
53
53
 
54
- --border: #6e8473;
55
- --accent: #16735f;
56
- --focus: #16735f80;
57
- --error: #af4355;
58
-
59
- --foreground-disabled: #5c715f;
60
- --background-soft: #b7c9b5;
54
+ --border: #a0a0a0;
55
+ --focus: #0000006a;
61
56
 
62
57
  --popover-background: color-mix(
63
58
  in srgb,
@@ -68,49 +63,3 @@ html[color-scheme="moss"] {
68
63
  --popover-selection: var(--background-soft);
69
64
  --popover-reference: var(--background-muted);
70
65
  }
71
-
72
- html[color-scheme="sunset"] {
73
- --foreground: #30194d;
74
- --background: #fffaf2;
75
- --shadow: #76519a;
76
-
77
- --border: #69458b;
78
- --accent: #e76f2d;
79
- --focus: #69458b80;
80
- --error: #bd3b4c;
81
-
82
- --foreground-disabled: #c7bcd2;
83
- --background-soft: #d2cac0;
84
-
85
- --popover-background: color-mix(
86
- in srgb,
87
- var(--background),
88
- rgba(255, 255, 255, 1) 78%
89
- );
90
-
91
- --popover-selection: var(--background-soft);
92
- --popover-reference: var(--background-muted);
93
- }
94
-
95
- html[color-scheme="icy"] {
96
- --foreground: #000000;
97
- --background: #ffffff;
98
- --shadow: #3d5899;
99
-
100
- --border: #5d8d9b;
101
- --accent: #087ea4;
102
- --focus: #087ea480;
103
- --error: #b74c61;
104
-
105
- --foreground-disabled: #818282;
106
- --background-soft: #d1f6fe;
107
-
108
- --popover-background: color-mix(
109
- in srgb,
110
- var(--background),
111
- rgba(255, 255, 255, 1) 82%
112
- );
113
-
114
- --popover-selection: var(--background-soft);
115
- --popover-reference: var(--background-muted);
116
- }