@zapatran/paper-ember-theme 0.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/dist/index.cjs +136 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +111 -0
- package/dist/index.d.ts +111 -0
- package/dist/index.js +111 -0
- package/dist/index.js.map +1 -0
- package/package.json +43 -0
- package/src/alerts.css +232 -0
- package/src/badges.css +338 -0
- package/src/buttons.css +330 -0
- package/src/cards.css +132 -0
- package/src/components.css +9 -0
- package/src/forms.css +333 -0
- package/src/index.css +9 -0
- package/src/index.ts +140 -0
- package/src/tables.css +96 -0
- package/src/tokens.css +99 -0
- package/src/vars.css +107 -0
package/src/vars.css
ADDED
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
/* ======================================================================
|
|
2
|
+
CSS custom properties — fallback for contexts where @theme is not
|
|
3
|
+
processed by Tailwind (e.g. Storybook's multi-module CSS bundling).
|
|
4
|
+
In Tailwind single-pass contexts (playground, app builds) the @theme
|
|
5
|
+
block in tokens.css already outputs these via @layer theme, so this
|
|
6
|
+
file is harmlessly redundant there.
|
|
7
|
+
====================================================================== */
|
|
8
|
+
|
|
9
|
+
:root {
|
|
10
|
+
/* ── Paper ── */
|
|
11
|
+
--color-paper-50: #faf7f1;
|
|
12
|
+
--color-paper-100: #f4ede0;
|
|
13
|
+
--color-paper-200: #e9dcc2;
|
|
14
|
+
--color-paper-300: #dcc69d;
|
|
15
|
+
--color-paper-400: #c9aa78;
|
|
16
|
+
--color-paper-500: #b08e5b;
|
|
17
|
+
--color-paper-600: #92744a;
|
|
18
|
+
--color-paper-700: #735a3c;
|
|
19
|
+
--color-paper-800: #544231;
|
|
20
|
+
--color-paper-900: #382c22;
|
|
21
|
+
--color-paper-950: #1f1812;
|
|
22
|
+
|
|
23
|
+
/* ── Ember ── */
|
|
24
|
+
--color-ember-50: #fdf4ee;
|
|
25
|
+
--color-ember-100: #fae5d6;
|
|
26
|
+
--color-ember-200: #f4c9a7;
|
|
27
|
+
--color-ember-300: #eda472;
|
|
28
|
+
--color-ember-400: #e37f47;
|
|
29
|
+
--color-ember-500: #d5612f;
|
|
30
|
+
--color-ember-600: #bd4a23;
|
|
31
|
+
--color-ember-700: #9d3a20;
|
|
32
|
+
--color-ember-800: #7e2f1f;
|
|
33
|
+
--color-ember-900: #65271c;
|
|
34
|
+
--color-ember-950: #37120d;
|
|
35
|
+
|
|
36
|
+
/* ── Leaf ── */
|
|
37
|
+
--color-leaf-50: #f3f7ed;
|
|
38
|
+
--color-leaf-100: #e3eed5;
|
|
39
|
+
--color-leaf-200: #c8dcaf;
|
|
40
|
+
--color-leaf-300: #a4c382;
|
|
41
|
+
--color-leaf-400: #82a85e;
|
|
42
|
+
--color-leaf-500: #658c44;
|
|
43
|
+
--color-leaf-600: #4e6f33;
|
|
44
|
+
--color-leaf-700: #3e572b;
|
|
45
|
+
--color-leaf-800: #324624;
|
|
46
|
+
--color-leaf-900: #2a3b1f;
|
|
47
|
+
|
|
48
|
+
/* ── Honey ── */
|
|
49
|
+
--color-honey-50: #fdf8ec;
|
|
50
|
+
--color-honey-100: #fbedc7;
|
|
51
|
+
--color-honey-200: #f7d98c;
|
|
52
|
+
--color-honey-300: #f2c054;
|
|
53
|
+
--color-honey-400: #eda82b;
|
|
54
|
+
--color-honey-500: #d18a19;
|
|
55
|
+
--color-honey-600: #a86813;
|
|
56
|
+
--color-honey-700: #7e4d12;
|
|
57
|
+
--color-honey-800: #5c3a10;
|
|
58
|
+
--color-honey-900: #3f2a0d;
|
|
59
|
+
|
|
60
|
+
/* ── Rose ── */
|
|
61
|
+
--color-rose-50: #fdf2f0;
|
|
62
|
+
--color-rose-100: #fbdcd7;
|
|
63
|
+
--color-rose-200: #f6b6ad;
|
|
64
|
+
--color-rose-300: #ef8676;
|
|
65
|
+
--color-rose-400: #e25b46;
|
|
66
|
+
--color-rose-500: #c93f29;
|
|
67
|
+
--color-rose-600: #a82d1b;
|
|
68
|
+
--color-rose-700: #822417;
|
|
69
|
+
--color-rose-800: #5f1d14;
|
|
70
|
+
--color-rose-900: #3d1410;
|
|
71
|
+
|
|
72
|
+
/* ── Ink ── */
|
|
73
|
+
--color-ink-50: #eef3f8;
|
|
74
|
+
--color-ink-100: #d8e3ee;
|
|
75
|
+
--color-ink-200: #b1c5dc;
|
|
76
|
+
--color-ink-300: #83a4c6;
|
|
77
|
+
--color-ink-400: #5a85ad;
|
|
78
|
+
--color-ink-500: #3b6a92;
|
|
79
|
+
--color-ink-600: #2e5477;
|
|
80
|
+
--color-ink-700: #26425d;
|
|
81
|
+
--color-ink-800: #1f3447;
|
|
82
|
+
--color-ink-900: #172734;
|
|
83
|
+
|
|
84
|
+
/* ── Typography ── */
|
|
85
|
+
--font-family-sans: 'Figtree', ui-sans-serif, system-ui, sans-serif;
|
|
86
|
+
--font-family-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
|
|
87
|
+
|
|
88
|
+
/* ── Border Radius ── */
|
|
89
|
+
--radius-xs: 2px;
|
|
90
|
+
--radius-sm: 4px;
|
|
91
|
+
--radius-md: 8px;
|
|
92
|
+
--radius-lg: 12px;
|
|
93
|
+
--radius-xl: 16px;
|
|
94
|
+
--radius-2xl: 20px;
|
|
95
|
+
--radius-3xl: 28px;
|
|
96
|
+
|
|
97
|
+
/* ── Shadows ── */
|
|
98
|
+
--shadow-paper-1: 0 1px 2px rgba(56, 44, 34, 0.06), 0 1px 1px rgba(56, 44, 34, 0.04);
|
|
99
|
+
--shadow-paper-2: 0 2px 4px rgba(56, 44, 34, 0.06), 0 4px 8px rgba(56, 44, 34, 0.05);
|
|
100
|
+
--shadow-paper-3: 0 4px 8px rgba(56, 44, 34, 0.06), 0 12px 24px rgba(56, 44, 34, 0.07);
|
|
101
|
+
--shadow-paper-4: 0 8px 16px rgba(56, 44, 34, 0.08), 0 24px 48px rgba(56, 44, 34, 0.1);
|
|
102
|
+
--shadow-ember-glow: 0 6px 24px -8px rgba(213, 97, 47, 0.55);
|
|
103
|
+
|
|
104
|
+
/* ── Letter Spacing ── */
|
|
105
|
+
--tracking-tightish: -0.012em;
|
|
106
|
+
--tracking-tighter2: -0.022em;
|
|
107
|
+
}
|