@mhmo91/schmancy 0.2.134 → 0.2.135
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/mixins/tailwind.css +8 -5
- package/package.json +1 -1
package/dist/mixins/tailwind.css
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
@import 'tailwindcss';
|
|
2
2
|
|
|
3
3
|
@theme inline {
|
|
4
|
-
--md-ref-typeface-brand:
|
|
5
|
-
--md-ref-typeface-plain:
|
|
4
|
+
--md-ref-typeface-brand: var(--schmancy-font-family);
|
|
5
|
+
--md-ref-typeface-plain: var(--schmancy-font-family);
|
|
6
6
|
--md-sys-color-primary: var(--schmancy-sys-color-primary-default);
|
|
7
7
|
--md-sys-color-secondary: var(--schmancy-sys-color-secondary-default);
|
|
8
8
|
|
|
@@ -50,9 +50,12 @@
|
|
|
50
50
|
--shadow-5: var(--schmancy-sys-elevation-5);
|
|
51
51
|
--outline-1: var(--schmancy-sys-outline-1);
|
|
52
52
|
--font-sans:
|
|
53
|
-
ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
|
|
54
|
-
|
|
55
|
-
--font-
|
|
53
|
+
var(--schmancy-font-family), ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
|
|
54
|
+
'Segoe UI Symbol', 'Noto Color Emoji';
|
|
55
|
+
--font-serif: var(--schmancy-font-family), ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
|
|
56
|
+
--font-mono:
|
|
57
|
+
var(--schmancy-font-family), ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono',
|
|
58
|
+
'Courier New', monospace;
|
|
56
59
|
--color-red-50: oklch(0.971 0.013 17.38);
|
|
57
60
|
--color-red-100: oklch(0.936 0.032 17.717);
|
|
58
61
|
--color-red-200: oklch(0.885 0.062 18.334);
|