@lemmo-lab/tokens-cli 2.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 +90 -0
- package/assets/css/themes/index.css +6 -0
- package/assets/css/themes/light.css +95 -0
- package/assets/css/themes/midnight.css +95 -0
- package/assets/css/themes/neon.css +95 -0
- package/assets/css/variables.css +324 -0
- package/assets/js/tokens.d.ts +22 -0
- package/assets/js/tokens.js +1142 -0
- package/assets/tailwind/preset.js +40 -0
- package/bin/cli.js +124 -0
- package/package.json +34 -0
- package/src/commands/add-theme.js +57 -0
- package/src/commands/diff.js +72 -0
- package/src/commands/install.js +269 -0
- package/src/commands/list.js +31 -0
- package/src/utils/banner.js +8 -0
- package/src/utils/prompts.js +67 -0
|
@@ -0,0 +1,324 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @lemmo-lab/tokens (v2) - Default Theme & Primitives (Dark Default)
|
|
3
|
+
* Single Source of Truth for Lemmo Design System
|
|
4
|
+
* Governed strictly by AGENTS.md rules. DO NOT EDIT DIRECTLY.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
:root {
|
|
8
|
+
/* ================================================================== */
|
|
9
|
+
/* SPACING (4px ladder) */
|
|
10
|
+
/* ================================================================== */
|
|
11
|
+
--lemmo-space-0: 0;
|
|
12
|
+
--lemmo-space-50: .125rem;
|
|
13
|
+
--lemmo-space-100: .25rem;
|
|
14
|
+
--lemmo-space-150: .375rem;
|
|
15
|
+
--lemmo-space-200: .5rem;
|
|
16
|
+
--lemmo-space-250: .625rem;
|
|
17
|
+
--lemmo-space-300: .75rem;
|
|
18
|
+
--lemmo-space-400: 1rem;
|
|
19
|
+
--lemmo-space-500: 1.25rem;
|
|
20
|
+
--lemmo-space-600: 1.5rem;
|
|
21
|
+
--lemmo-space-700: 1.75rem;
|
|
22
|
+
--lemmo-space-800: 2rem;
|
|
23
|
+
--lemmo-space-1000: 2.5rem;
|
|
24
|
+
--lemmo-space-1200: 3rem;
|
|
25
|
+
--lemmo-space-1400: 3.5rem;
|
|
26
|
+
--lemmo-space-1600: 4rem;
|
|
27
|
+
--lemmo-space-2000: 5rem;
|
|
28
|
+
--lemmo-space-2400: 6rem;
|
|
29
|
+
|
|
30
|
+
/* ================================================================== */
|
|
31
|
+
/* GAPS */
|
|
32
|
+
/* ================================================================== */
|
|
33
|
+
--lemmo-gap-1: .25rem;
|
|
34
|
+
--lemmo-gap-2: .5rem;
|
|
35
|
+
--lemmo-gap-3: .75rem;
|
|
36
|
+
--lemmo-gap-4: 1rem;
|
|
37
|
+
--lemmo-gap-0-5: .125rem;
|
|
38
|
+
--lemmo-gap-1-5: .375rem;
|
|
39
|
+
--lemmo-gap-2-5: .625rem;
|
|
40
|
+
--lemmo-gap-card-grid: .5rem;
|
|
41
|
+
--lemmo-gap-card-inner: .5rem;
|
|
42
|
+
--lemmo-gap-section-sm: 2.5rem;
|
|
43
|
+
--lemmo-gap-section-lg: 5rem;
|
|
44
|
+
|
|
45
|
+
/* ================================================================== */
|
|
46
|
+
/* RADIUS (Relative Derived Scales) */
|
|
47
|
+
/* ================================================================== */
|
|
48
|
+
--lemmo-radius-0: 0;
|
|
49
|
+
--lemmo-radius-100: .25rem;
|
|
50
|
+
--lemmo-radius-150: .375rem;
|
|
51
|
+
--lemmo-radius-200: .5rem;
|
|
52
|
+
--lemmo-radius-250: .625rem;
|
|
53
|
+
--lemmo-radius-300: .75rem;
|
|
54
|
+
--lemmo-radius-400: 1rem;
|
|
55
|
+
--lemmo-radius-500: 1.25rem;
|
|
56
|
+
--lemmo-radius-600: 1.5rem;
|
|
57
|
+
--lemmo-radius-base: .5rem;
|
|
58
|
+
--lemmo-radius-050: .125rem;
|
|
59
|
+
--lemmo-radius-full: 9999px;
|
|
60
|
+
--lemmo-radius-badge: calc(var(--lemmo-radius-base) * 0.75);
|
|
61
|
+
--lemmo-radius-control: var(--lemmo-radius-base);
|
|
62
|
+
--lemmo-radius-card: calc(var(--lemmo-radius-base) * 1.5);
|
|
63
|
+
--lemmo-radius-media: calc(var(--lemmo-radius-base) * 2);
|
|
64
|
+
--lemmo-radius-featured-card: calc(var(--lemmo-radius-base) * 2.5);
|
|
65
|
+
--lemmo-radius-media-lg: calc(var(--lemmo-radius-base) * 3);
|
|
66
|
+
--lemmo-radius-pill: 9999px;
|
|
67
|
+
|
|
68
|
+
/* ================================================================== */
|
|
69
|
+
/* TYPOGRAPHY (Decoupled Stacks & Unitless Line Heights) */
|
|
70
|
+
/* ================================================================== */
|
|
71
|
+
--lemmo-font-sans: Satoshi, system-ui, sans-serif;
|
|
72
|
+
--lemmo-font-sans-fa: IRANSansX, Tahoma, sans-serif;
|
|
73
|
+
--lemmo-font-display: Oddval, Satoshi, system-ui, sans-serif;
|
|
74
|
+
--lemmo-font-display-fa: Morabba, Tahoma, sans-serif;
|
|
75
|
+
--lemmo-font-heading: Satoshi, system-ui, sans-serif;
|
|
76
|
+
--lemmo-font-heading-fa: Morabba, Tahoma, sans-serif;
|
|
77
|
+
--lemmo-font-numeric: Satoshi, system-ui, sans-serif;
|
|
78
|
+
--lemmo-font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, monospace;
|
|
79
|
+
--lemmo-font-display: var(--lemmo-font-display);
|
|
80
|
+
--lemmo-font-heading: var(--lemmo-font-heading);
|
|
81
|
+
--lemmo-font-body: var(--lemmo-font-sans);
|
|
82
|
+
--lemmo-font-numeric: var(--lemmo-font-numeric);
|
|
83
|
+
--lemmo-leading-factor: 1;
|
|
84
|
+
--lemmo-font-weight-regular: 400;
|
|
85
|
+
--lemmo-font-weight-medium: 500;
|
|
86
|
+
--lemmo-font-weight-cta: 510;
|
|
87
|
+
--lemmo-font-weight-semi-bold: 600;
|
|
88
|
+
--lemmo-font-weight-bold: 700;
|
|
89
|
+
--lemmo-font-weight-black: 900;
|
|
90
|
+
--lemmo-type-size-100: .75rem;
|
|
91
|
+
--lemmo-type-size-200: .875rem;
|
|
92
|
+
--lemmo-type-size-300: 1rem;
|
|
93
|
+
--lemmo-type-size-400: 1.125rem;
|
|
94
|
+
--lemmo-type-size-500: 1.25rem;
|
|
95
|
+
--lemmo-type-size-600: 1.5rem;
|
|
96
|
+
--lemmo-type-size-700: 1.75rem;
|
|
97
|
+
--lemmo-type-size-800: 2rem;
|
|
98
|
+
--lemmo-type-size-900: 2.25rem;
|
|
99
|
+
--lemmo-type-size-1000: 2.5rem;
|
|
100
|
+
--lemmo-type-size-1100: 3rem;
|
|
101
|
+
--lemmo-type-size-1200: 3.5rem;
|
|
102
|
+
--lemmo-type-size-1300: 4rem;
|
|
103
|
+
--lemmo-type-size-1400: 4.5rem;
|
|
104
|
+
--lemmo-type-size-050: .625rem;
|
|
105
|
+
--lemmo-type-leading-300: 1.25;
|
|
106
|
+
--lemmo-type-leading-400: 1.28;
|
|
107
|
+
--lemmo-type-leading-500: 1.43;
|
|
108
|
+
--lemmo-type-leading-600: 1.5;
|
|
109
|
+
--lemmo-type-leading-700: 1.4;
|
|
110
|
+
--lemmo-type-leading-800: 1.33;
|
|
111
|
+
--lemmo-type-leading-900: 1.25;
|
|
112
|
+
--lemmo-type-leading-1000: 1.2;
|
|
113
|
+
--lemmo-type-leading-1100: 1.15;
|
|
114
|
+
--lemmo-type-leading-1200: 1.1;
|
|
115
|
+
--lemmo-type-leading-1300: 1.05;
|
|
116
|
+
--lemmo-type-leading-1400: 1;
|
|
117
|
+
--lemmo-type-track-none: 0;
|
|
118
|
+
--lemmo-type-track-slight: -0.025rem;
|
|
119
|
+
--lemmo-type-track-tight: -0.075rem;
|
|
120
|
+
--lemmo-type-track-loose: 0.00625rem;
|
|
121
|
+
--lemmo-type-track-wide: 0.0125rem;
|
|
122
|
+
--lemmo-type-track-xxs: -0.3px;
|
|
123
|
+
--lemmo-type-track-5xl: -1.2px;
|
|
124
|
+
--lemmo-type-track-heading: -2%;
|
|
125
|
+
--lemmo-type-track-caps: -4%;
|
|
126
|
+
--lemmo-type-track-label: 0.2px;
|
|
127
|
+
--lemmo-type-track-caption: 0;
|
|
128
|
+
--lemmo-type-track-table-head: -0.56px;
|
|
129
|
+
|
|
130
|
+
/* ================================================================== */
|
|
131
|
+
/* BREAKPOINTS, SIZES & STROKES */
|
|
132
|
+
/* ================================================================== */
|
|
133
|
+
--lemmo-bp-base: 20rem;
|
|
134
|
+
--lemmo-bp-sm: 40rem;
|
|
135
|
+
--lemmo-bp-md: 48rem;
|
|
136
|
+
--lemmo-bp-lg: 64rem;
|
|
137
|
+
--lemmo-bp-xl: 80rem;
|
|
138
|
+
--lemmo-bp-2xl: 120rem;
|
|
139
|
+
--lemmo-bp-3xl: 158rem;
|
|
140
|
+
--lemmo-bp-tablet: var(--lemmo-bp-md);
|
|
141
|
+
--lemmo-bp-desktop: var(--lemmo-bp-xl);
|
|
142
|
+
--lemmo-bp-wide: var(--lemmo-bp-2xl);
|
|
143
|
+
--lemmo-stroke-none: 0;
|
|
144
|
+
--lemmo-stroke-hairline: 0.5px;
|
|
145
|
+
--lemmo-stroke-thin: 1px;
|
|
146
|
+
--lemmo-stroke-medium: 1.5px;
|
|
147
|
+
--lemmo-stroke-thick: 2px;
|
|
148
|
+
--lemmo-stroke-rim: var(--lemmo-stroke-thin);
|
|
149
|
+
--lemmo-stroke-border: var(--lemmo-stroke-thin);
|
|
150
|
+
--lemmo-stroke-border-gradient: var(--lemmo-stroke-thick);
|
|
151
|
+
--lemmo-stroke-divider: var(--lemmo-stroke-hairline);
|
|
152
|
+
--lemmo-size-control-xs: 2rem;
|
|
153
|
+
--lemmo-size-control-sm: 2.25rem;
|
|
154
|
+
--lemmo-size-control-md: 2.5rem;
|
|
155
|
+
--lemmo-size-control-lg: 2.75rem;
|
|
156
|
+
--lemmo-size-control-xl: 3rem;
|
|
157
|
+
--lemmo-size-icon-xs: .75rem;
|
|
158
|
+
--lemmo-size-icon-sm: 1rem;
|
|
159
|
+
--lemmo-size-icon-md: 1.25rem;
|
|
160
|
+
--lemmo-size-icon-lg: 1.5rem;
|
|
161
|
+
--lemmo-size-icon-xl: 1.75rem;
|
|
162
|
+
--lemmo-size-header: 3.25rem;
|
|
163
|
+
--lemmo-size-header-compact: 2.25rem;
|
|
164
|
+
--lemmo-size-gutter: 1rem;
|
|
165
|
+
--lemmo-size-container-base: 100%;
|
|
166
|
+
--lemmo-size-container-sm: 40rem;
|
|
167
|
+
--lemmo-size-container-md: 48rem;
|
|
168
|
+
--lemmo-size-container-lg: 64rem;
|
|
169
|
+
--lemmo-size-container-xl: 80rem;
|
|
170
|
+
--lemmo-size-container-2xl: 120rem;
|
|
171
|
+
--lemmo-size-container-3xl: 158rem;
|
|
172
|
+
--lemmo-size-container-media: calc(100vw - 2rem);
|
|
173
|
+
--lemmo-size-container-copy: 80rem;
|
|
174
|
+
--lemmo-size-container-content: 56rem;
|
|
175
|
+
--lemmo-size-container-wide: 96rem;
|
|
176
|
+
--lemmo-size-pricing-column-sm: 66.5rem;
|
|
177
|
+
--lemmo-size-pricing-column-lg: 89rem;
|
|
178
|
+
--lemmo-size-pricing-max-default: 90rem;
|
|
179
|
+
--lemmo-size-pricing-max-wide: 92rem;
|
|
180
|
+
--lemmo-size-pricing-pad-x: 1rem;
|
|
181
|
+
--lemmo-size-pricing-pad-x-lg: 3.75rem;
|
|
182
|
+
--lemmo-size-pricing-pad-y: 2rem;
|
|
183
|
+
|
|
184
|
+
/* ================================================================== */
|
|
185
|
+
/* MOTION & ELEVATION */
|
|
186
|
+
/* ================================================================== */
|
|
187
|
+
--lemmo-duration-fast: 100ms;
|
|
188
|
+
--lemmo-duration-normal: 200ms;
|
|
189
|
+
--lemmo-duration-slow: 300ms;
|
|
190
|
+
--lemmo-duration-slower: 500ms;
|
|
191
|
+
--lemmo-duration-slider: 150ms;
|
|
192
|
+
--lemmo-duration-plan-swap: 420ms;
|
|
193
|
+
--lemmo-duration-breathe: 1.8s;
|
|
194
|
+
--lemmo-ease-out: ease-out;
|
|
195
|
+
--lemmo-ease-in-out: ease-in-out;
|
|
196
|
+
--lemmo-ease-snap: cubic-bezier(0.77, 0, 0.175, 1);
|
|
197
|
+
--lemmo-ease-spring: cubic-bezier(0.68, -0.55, 0.265, 1.55);
|
|
198
|
+
--lemmo-ease-swift: cubic-bezier(0.55, 0, 0.1, 1);
|
|
199
|
+
--lemmo-ease-emphasized: cubic-bezier(0.2, 0, 0, 1);
|
|
200
|
+
--lemmo-ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
|
|
201
|
+
--lemmo-ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
|
|
202
|
+
--lemmo-shadow-card-featured: 0 1.5rem 4rem rgba(0, 0, 0, 0.24);
|
|
203
|
+
--lemmo-shadow-card-base: 10px 34px 24px 0 rgba(0, 0, 0, 0.15);
|
|
204
|
+
--lemmo-shadow-button-brand-inset: inset 0 0.8px 0 0 #d1fe17, inset 0 -1.6px 0 0 #829b19, inset 0 -2.4px 0 0 #829b19;
|
|
205
|
+
--lemmo-shadow-button-brand: inset 0 0.8px 0 0 #d1fe17, inset 0 -1.6px 0 0 #829b19, inset 0 -2.4px 0 0 #829b19, 10px 34px 24px 0px rgba(0, 0, 0, 0.15);
|
|
206
|
+
--lemmo-shadow-gloss-inset: inset 0 -2px 2px 0 rgba(255, 255, 255, 0.4), inset 0 2px 2px 0 rgba(255, 255, 255, 0.4);
|
|
207
|
+
--lemmo-shadow-glow-brand: 0 0 0.4rem color-mix(in srgb, #d1fe17 56%, transparent);
|
|
208
|
+
|
|
209
|
+
/* ================================================================== */
|
|
210
|
+
/* TIER 2 SEMANTIC CONTRACT (Default Dark Theme Colors & Roles) */
|
|
211
|
+
/* ================================================================== */
|
|
212
|
+
--lemmo-page-background: #131517;
|
|
213
|
+
--lemmo-page-foreground: #e1e1e3;
|
|
214
|
+
--lemmo-surface-primary-background: #1c1e20;
|
|
215
|
+
--lemmo-surface-primary-foreground: #e1e1e3;
|
|
216
|
+
--lemmo-surface-secondary-background: #23262a;
|
|
217
|
+
--lemmo-surface-secondary-foreground: #a1a1a5;
|
|
218
|
+
--lemmo-surface-tertiary-background: #0a0c0e;
|
|
219
|
+
--lemmo-surface-tertiary-foreground: #e1e1e3;
|
|
220
|
+
--lemmo-surface-elevated-background: #18191c;
|
|
221
|
+
--lemmo-surface-elevated-foreground: #e1e1e3;
|
|
222
|
+
--lemmo-surface-glass-background: rgba(15, 17, 19, 0.88);
|
|
223
|
+
--lemmo-surface-glass-foreground: #e1e1e3;
|
|
224
|
+
--lemmo-surface-brand-background: #d1fe17;
|
|
225
|
+
--lemmo-surface-brand-foreground: #131517;
|
|
226
|
+
--lemmo-text-primary: #e1e1e3;
|
|
227
|
+
--lemmo-text-secondary: #a1a1a5;
|
|
228
|
+
--lemmo-text-muted: #898a8b;
|
|
229
|
+
--lemmo-text-faint: #737475;
|
|
230
|
+
--lemmo-text-on-brand: #131517;
|
|
231
|
+
--lemmo-text-reverted: #060515;
|
|
232
|
+
--lemmo-text-danger: #ff5462;
|
|
233
|
+
--lemmo-text-warning: #dfab01;
|
|
234
|
+
--lemmo-text-success: #4ee466;
|
|
235
|
+
--lemmo-text-info: #5b91fe;
|
|
236
|
+
--lemmo-border-default: rgba(255, 255, 255, 0.15);
|
|
237
|
+
--lemmo-border-subtle: rgba(255, 255, 255, 0.04);
|
|
238
|
+
--lemmo-border-mid: rgba(255, 255, 255, 0.08);
|
|
239
|
+
--lemmo-border-danger: #fa0019;
|
|
240
|
+
--lemmo-border-warning: #dfab01;
|
|
241
|
+
--lemmo-border-success: #2eb844;
|
|
242
|
+
--lemmo-border-info: #0256fe;
|
|
243
|
+
--lemmo-interactive-primary-background: #d1fe17;
|
|
244
|
+
--lemmo-interactive-primary-foreground: #131517;
|
|
245
|
+
--lemmo-interactive-primary-hover: #c4ee0b;
|
|
246
|
+
--lemmo-interactive-secondary-background: #0256fe;
|
|
247
|
+
--lemmo-interactive-secondary-foreground: #ffffff;
|
|
248
|
+
--lemmo-interactive-secondary-hover: #245ef1;
|
|
249
|
+
--lemmo-status-danger-background: #5c000f;
|
|
250
|
+
--lemmo-status-danger-foreground: #ff5462;
|
|
251
|
+
--lemmo-status-danger-border: #fa0019;
|
|
252
|
+
--lemmo-status-danger-glow: #ff1f2e;
|
|
253
|
+
--lemmo-status-warning-background: #523f00;
|
|
254
|
+
--lemmo-status-warning-foreground: #ffef33;
|
|
255
|
+
--lemmo-status-warning-border: #dfab01;
|
|
256
|
+
--lemmo-status-warning-glow: #fff05a;
|
|
257
|
+
--lemmo-status-success-background: #0d4a17;
|
|
258
|
+
--lemmo-status-success-foreground: #4ee466;
|
|
259
|
+
--lemmo-status-success-border: #2eb844;
|
|
260
|
+
--lemmo-status-success-glow: #00e62e;
|
|
261
|
+
--lemmo-status-info-background: #000d26;
|
|
262
|
+
--lemmo-status-info-foreground: #5b91fe;
|
|
263
|
+
--lemmo-status-info-border: #0256fe;
|
|
264
|
+
--lemmo-status-info-glow: #3cd8ff;
|
|
265
|
+
|
|
266
|
+
/* ================================================================== */
|
|
267
|
+
/* TIER 2 GRADIENTS (Default Dark Theme) */
|
|
268
|
+
/* ================================================================== */
|
|
269
|
+
--lemmo-gradient-surface-featured: linear-gradient(225deg, rgba(209, 254, 23, 0.16) 0%, rgba(209, 254, 23, 0.08) 28%, rgba(209, 254, 23, 0) 62%), #18191c;
|
|
270
|
+
--lemmo-gradient-surface-pink-haze: radial-gradient(145% 54% at 100% 0%, rgba(255, 0, 91, 0.32) 0%, rgba(255, 0, 91, 0.15) 42%, rgba(255, 0, 91, 0) 78%), #18191c;
|
|
271
|
+
--lemmo-gradient-surface-olive: linear-gradient(180deg, #1F2022 0%, #222420 55%, #272A20 100%);
|
|
272
|
+
--lemmo-gradient-surface-ocean: linear-gradient(180deg, #121D23 0%, #152026 45%, #1D282E 75%, #273238 100%);
|
|
273
|
+
--lemmo-gradient-surface-steel: linear-gradient(180deg, #1F2024 0%, #232428 40%, #343539 75%, #48494D 100%);
|
|
274
|
+
--lemmo-gradient-surface-base: linear-gradient(180deg, #1c1e20 0%, #131517 100%);
|
|
275
|
+
--lemmo-gradient-surface-soft: radial-gradient(58% 220% at 3% 42%, rgba(255, 255, 255, 0.095) 0%, rgba(255, 255, 255, 0.035) 42%, rgba(255, 255, 255, 0.012) 100%), linear-gradient(180deg, #1c1e20 0%, #131517 100%);
|
|
276
|
+
--lemmo-gradient-surface-lime-wash: radial-gradient(56.49% 230.73% at 2.37% 40.91%, rgba(187, 251, 12, 0.07) 0%, rgba(12, 251, 32, 0.01) 100%), radial-gradient(41.8% 183.68% at 10.4% 53.71%, rgba(197, 197, 197, 0.08) 0%, rgba(197, 197, 197, 0.01) 100%), linear-gradient(180deg, #1c1e20 0%, #131517 100%);
|
|
277
|
+
--lemmo-gradient-surface-pink-wash: radial-gradient(56.49% 230.73% at 2.37% 40.91%, rgba(237, 21, 114, 0.10) 0%, rgba(237, 21, 114, 0.01) 100%), linear-gradient(180deg, #1c1e20 0%, #131517 100%);
|
|
278
|
+
--lemmo-gradient-surface-blue-wash: radial-gradient(56.49% 230.73% at 2.37% 40.91%, rgba(21, 68, 237, 0.10) 0%, rgba(21, 68, 237, 0.01) 100%), linear-gradient(180deg, #1c1e20 0%, #131517 100%);
|
|
279
|
+
--lemmo-gradient-surface-steel-flat: linear-gradient(180deg, rgba(110, 145, 188, 0.02) 0%, rgba(110, 145, 188, 0.20) 100%), #1c1e20;
|
|
280
|
+
--lemmo-gradient-surface-plain: linear-gradient(180deg, #1c1e20 0%, #131517 100%);
|
|
281
|
+
--lemmo-gradient-rim-vertical: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.09) 18%, rgba(255, 255, 255, 0.03) 38%, rgba(255, 255, 255, 0) 72%);
|
|
282
|
+
--lemmo-gradient-rim-diagonal: linear-gradient(225deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.10) 18%, rgba(255, 255, 255, 0.04) 42%, rgba(255, 255, 255, 0) 76%);
|
|
283
|
+
--lemmo-gradient-border-pink: radial-gradient(86.59% 115.91% at 50% 45.45%, #fb398c 0%, #ed1572 100%);
|
|
284
|
+
--lemmo-gradient-border-blue: radial-gradient(86.59% 115.91% at 50% 45.45%, #245ef1 0%, #1544ed 100%);
|
|
285
|
+
--lemmo-gradient-pill-lime: radial-gradient(ellipse 55% 95% at 73% 50%, rgba(117, 239, 29, 0.6) 0%, rgba(194, 237, 21, 0) 100%), radial-gradient(ellipse 25% 42% at 85% 37%, rgba(255, 255, 255, 0.6) 0%, rgba(209, 254, 23, 0) 100%), radial-gradient(ellipse 33% 70% at 12% 76%, rgba(200, 239, 29, 0.6) 0%, rgba(194, 237, 21, 0) 100%), linear-gradient(90deg, #d1fe17 0%, #d1fe17 100%);
|
|
286
|
+
--lemmo-gradient-pill-blue: radial-gradient(ellipse 75% 300% at 73% 50%, #1d63ef 0%, #5150d0 45%, rgba(237, 21, 114, 0) 100%), radial-gradient(ellipse 30% 120% at 85% 37%, rgba(255, 255, 255, 0.6) 0%, rgba(209, 254, 23, 0) 100%), #0256fe;
|
|
287
|
+
--lemmo-gradient-pill-ultraviolet: radial-gradient(ellipse 55% 95% at 73% 50%, rgba(29, 99, 239, 0.6) 0%, rgba(81, 80, 208, 0.45) 25%, rgba(133, 60, 176, 0.3) 50%, rgba(237, 21, 114, 0) 100%), radial-gradient(ellipse 25% 42% at 85% 37%, rgba(255, 255, 255, 0.6) 0%, rgba(209, 254, 23, 0) 100%), radial-gradient(ellipse 33% 70% at 12% 76%, rgba(29, 99, 239, 0.6) 0%, rgba(133, 60, 176, 0.3) 50%, rgba(237, 21, 114, 0) 100%), linear-gradient(90deg, #0256fe 0%, #0256fe 100%);
|
|
288
|
+
--lemmo-gradient-pill-pink: radial-gradient(ellipse 55% 95% at 73% 50%, rgba(239, 29, 186, 0.6) 0%, rgba(237, 21, 114, 0) 100%), radial-gradient(ellipse 25% 42% at 85% 37%, rgba(255, 255, 255, 0.6) 0%, rgba(209, 254, 23, 0) 100%), radial-gradient(ellipse 33% 70% at 12% 76%, rgba(176, 29, 239, 0.6) 0%, rgba(206, 25, 176, 0.3) 50%, rgba(237, 21, 114, 0) 100%), linear-gradient(90deg, #ff005b 0%, #ff005b 100%);
|
|
289
|
+
--lemmo-gradient-offer-base: radial-gradient(120% 90% at 50% 0%, #55142c 0%, #35101d 38%, #1e0c14 70%, #140a0f 100%);
|
|
290
|
+
--lemmo-gradient-offer-flash: linear-gradient(0deg, rgba(255, 0, 91, 0.32) 0%, rgba(255, 0, 91, 0.016) 100%), linear-gradient(90deg, #0a0c0e 0%, #0a0c0e 100%);
|
|
291
|
+
--lemmo-gradient-offer-dots: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, rgba(209, 254, 23, 0) 0);
|
|
292
|
+
--lemmo-gradient-offer-combo: linear-gradient(135deg, #ff005b 0%, #d1004e 40%, #8b006a 100%);
|
|
293
|
+
--lemmo-gradient-table-cyan: radial-gradient(211% 211% at 50.16% 100%, rgba(60, 140, 255, 0.20) 0%, rgba(60, 216, 255, 0.20) 100%), rgba(255, 255, 255, 0.05);
|
|
294
|
+
--lemmo-gradient-overlay-darken: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
/* ================================================================== */
|
|
298
|
+
/* BILINGUAL LANGUAGE RULES: Automatic Font & Track Switching */
|
|
299
|
+
/* ================================================================== */
|
|
300
|
+
:root[lang='fa'],
|
|
301
|
+
[lang='fa'] {
|
|
302
|
+
--lemmo-font-body: var(--lemmo-font-sans-fa);
|
|
303
|
+
--lemmo-font-heading: var(--lemmo-font-heading-fa);
|
|
304
|
+
--lemmo-font-display: var(--lemmo-font-display-fa);
|
|
305
|
+
--lemmo-leading-factor: 1.15;
|
|
306
|
+
|
|
307
|
+
/* Persian letters require normal tracking; negative tracking breaks glyph connections */
|
|
308
|
+
--lemmo-type-track-slight: normal;
|
|
309
|
+
--lemmo-type-track-tight: normal;
|
|
310
|
+
--lemmo-type-track-heading: normal;
|
|
311
|
+
--lemmo-type-track-caps: normal;
|
|
312
|
+
--lemmo-type-track-table-head: normal;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
/* ================================================================== */
|
|
316
|
+
/* NUMERALS STANDARD: Satoshi Tabular Numerals (LTR Isolated) */
|
|
317
|
+
/* ================================================================== */
|
|
318
|
+
.tabular-nums,
|
|
319
|
+
[data-numeric] {
|
|
320
|
+
font-family: var(--lemmo-font-numeric, 'Satoshi', sans-serif);
|
|
321
|
+
font-feature-settings: 'tnum' 1;
|
|
322
|
+
direction: ltr;
|
|
323
|
+
unicode-bidi: isolate;
|
|
324
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @lemmo-lab/tokens (v2) - TypeScript Definitions
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
export declare const core: typeof import('./tokens.js').core;
|
|
6
|
+
export declare const semantic: typeof import('./tokens.js').semantic;
|
|
7
|
+
export declare const themes: {
|
|
8
|
+
default: any;
|
|
9
|
+
light: any;
|
|
10
|
+
neon: any;
|
|
11
|
+
midnight: any;
|
|
12
|
+
[key: string]: any;
|
|
13
|
+
};
|
|
14
|
+
export declare const tokens: {
|
|
15
|
+
core: typeof core;
|
|
16
|
+
semantic: typeof semantic;
|
|
17
|
+
themes: typeof themes;
|
|
18
|
+
defaultTheme: any;
|
|
19
|
+
lightTheme: any;
|
|
20
|
+
[key: string]: any;
|
|
21
|
+
};
|
|
22
|
+
export default tokens;
|