tailwind-preset-mantine 1.0.5 → 1.1.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/README.md CHANGED
@@ -96,13 +96,19 @@ module.exports = {
96
96
  },
97
97
 
98
98
  // for tailwind
99
- + autoprefixer: {},
100
- + 'tailwindcss/nesting': {},
101
- + tailwindcss: {},
99
+ + autoprefixer: {},
100
+ + 'tailwindcss/nesting': {},
101
+ + tailwindcss: {},
102
102
  },
103
103
  }
104
104
  ```
105
105
 
106
+ ## Minimal template
107
+
108
+ Here's a minimal template that you can use to get started:
109
+
110
+ <https://github.com/songkeys/next-app-mantine-tailwind-template>
111
+
106
112
  ## License
107
113
 
108
114
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tailwind-preset-mantine",
3
- "version": "1.0.5",
3
+ "version": "1.1.0",
4
4
  "description": "Integrate Mantine with Tailwind CSS",
5
5
  "keywords": [
6
6
  "mantine",
package/src/index.js CHANGED
@@ -216,7 +216,7 @@ function generatePrimaryColors() {
216
216
  700: "var(--mantine-primary-color-7)",
217
217
  800: "var(--mantine-primary-color-8)",
218
218
  900: "var(--mantine-primary-color-9)",
219
- DEFAULT: "var(--mantine-primary-color-6)",
219
+ DEFAULT: "var(--mantine-primary-color-filled)",
220
220
  },
221
221
  };
222
222