create-mercato-app 0.4.6-develop-e321a4e2a1 → 0.4.6-develop-7889bc5a01

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-mercato-app",
3
- "version": "0.4.6-develop-e321a4e2a1",
3
+ "version": "0.4.6-develop-7889bc5a01",
4
4
  "type": "module",
5
5
  "description": "Create a new Open Mercato application",
6
6
  "main": "./dist/index.js",
@@ -58,6 +58,7 @@ TODO: Fix that latter to have reference by the package names
58
58
  }
59
59
 
60
60
  :root {
61
+ color-scheme: light;
61
62
  --radius: 0.625rem;
62
63
  --background: oklch(1 0 0);
63
64
  --foreground: oklch(0.145 0 0);
@@ -104,6 +105,7 @@ TODO: Fix that latter to have reference by the package names
104
105
  }
105
106
 
106
107
  .dark {
108
+ color-scheme: dark;
107
109
  --background: oklch(0.145 0 0);
108
110
  --foreground: oklch(0.985 0 0);
109
111
  --card: oklch(0.205 0 0);
@@ -155,6 +157,11 @@ TODO: Fix that latter to have reference by the package names
155
157
  body {
156
158
  @apply bg-background text-foreground;
157
159
  }
160
+ select,
161
+ select option {
162
+ background-color: var(--background);
163
+ color: var(--foreground);
164
+ }
158
165
  }
159
166
 
160
167
  .rbc-calendar {