@marigold/theme-rui 0.3.0 → 0.3.2
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/global.css +8 -0
- package/dist/index.js +100 -71
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +100 -71
- package/dist/index.mjs.map +1 -1
- package/dist/mixins.css +54 -0
- package/dist/styles.css +239 -175
- package/dist/theme.css +5 -5
- package/package.json +7 -5
package/dist/theme.css
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
@import './mixins.css';
|
|
2
|
+
|
|
3
|
+
/*
|
|
2
4
|
TODO: how to do normalization so we doesn't break everything?
|
|
3
5
|
TODO: omit "background" in the naming convention? (https://ui.shadcn.com/docs/theming#convention)
|
|
4
6
|
TODO: create component styles files and compile to CSS classes?
|
|
@@ -19,8 +21,8 @@
|
|
|
19
21
|
@plugin "tailwindcss-animate";
|
|
20
22
|
|
|
21
23
|
@theme {
|
|
22
|
-
--font-sans:
|
|
23
|
-
--font-sans-variable: InterVariable, system-ui, sans-serif;
|
|
24
|
+
--font-sans: Inter, system-ui, sans-serif;
|
|
25
|
+
--font-sans-variable: InterVariable, Inter, system-ui, sans-serif;
|
|
24
26
|
|
|
25
27
|
/* orange (use for accent) */
|
|
26
28
|
--color-orange-50: #fff9ed;
|
|
@@ -154,5 +156,3 @@
|
|
|
154
156
|
}
|
|
155
157
|
}
|
|
156
158
|
}
|
|
157
|
-
|
|
158
|
-
@import './mixins.css';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@marigold/theme-rui",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Marigold RUI Theme",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
@@ -22,7 +22,9 @@
|
|
|
22
22
|
"import": "./dist/*.mjs"
|
|
23
23
|
},
|
|
24
24
|
"./styles.css": "./dist/styles.css",
|
|
25
|
-
"./theme.css": "./dist/theme.css"
|
|
25
|
+
"./theme.css": "./dist/theme.css",
|
|
26
|
+
"./mixins.css": "./dist/mixins.css",
|
|
27
|
+
"./global.css": "./dist/global.css"
|
|
26
28
|
},
|
|
27
29
|
"typesVersions": {
|
|
28
30
|
"*": {
|
|
@@ -51,11 +53,11 @@
|
|
|
51
53
|
"dependencies": {
|
|
52
54
|
"tailwindcss-animate": "1.0.7",
|
|
53
55
|
"tailwindcss-react-aria-components": "2.0.0",
|
|
54
|
-
"@marigold/components": "11.2.
|
|
55
|
-
"@marigold/system": "11.2.
|
|
56
|
+
"@marigold/components": "11.2.3",
|
|
57
|
+
"@marigold/system": "11.2.3",
|
|
56
58
|
"@marigold/theme-plugins": "1.0.1"
|
|
57
59
|
},
|
|
58
60
|
"scripts": {
|
|
59
|
-
"build": "NODE_ENV=production tsup && postcss -o dist/styles.css src/styles.css && cp src/theme.css
|
|
61
|
+
"build": "NODE_ENV=production tsup && postcss -o dist/styles.css src/styles.css && cp src/theme.css src/global.css src/mixins.css dist/"
|
|
60
62
|
}
|
|
61
63
|
}
|