@lemmo-lab/tokens 1.0.1 → 2.0.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 +1 -1
- package/dist/css/themes/index.css +1 -1
- package/dist/css/themes/light.css +57 -190
- package/dist/css/themes/midnight.css +66 -142
- package/dist/css/themes/neon.css +63 -139
- package/dist/css/variables.css +286 -575
- package/dist/js/tokens.d.ts +1 -1
- package/dist/js/tokens.js +398 -180
- package/dist/tailwind/preset.js +13 -11
- package/package.json +1 -2
- package/dist/css/system-design/lemmo.breakpoints.css +0 -19
- package/dist/css/system-design/lemmo.colors.css +0 -196
- package/dist/css/system-design/lemmo.elevation.css +0 -23
- package/dist/css/system-design/lemmo.gradients.css +0 -62
- package/dist/css/system-design/lemmo.motion.css +0 -28
- package/dist/css/system-design/lemmo.radius.css +0 -27
- package/dist/css/system-design/lemmo.sizes.css +0 -54
- package/dist/css/system-design/lemmo.spacing.css +0 -42
- package/dist/css/system-design/lemmo.strokes.css +0 -18
- package/dist/css/system-design/lemmo.tokens.css +0 -14
- package/dist/css/system-design/lemmo.typography.css +0 -120
package/dist/css/variables.css
CHANGED
|
@@ -1,609 +1,320 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @lemmo-lab/tokens - Default Theme &
|
|
2
|
+
* @lemmo-lab/tokens (v2) - Default Theme & Primitives (Dark Default)
|
|
3
3
|
* Single Source of Truth for Lemmo Design System
|
|
4
|
-
*
|
|
4
|
+
* Governed strictly by AGENTS.md rules. DO NOT EDIT DIRECTLY.
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
:root {
|
|
8
|
-
/*
|
|
9
|
-
/*
|
|
10
|
-
/*
|
|
11
|
-
|
|
12
|
-
--lemmo-
|
|
13
|
-
--lemmo-
|
|
14
|
-
--lemmo-
|
|
15
|
-
--lemmo-
|
|
16
|
-
--lemmo-
|
|
17
|
-
--lemmo-
|
|
18
|
-
--lemmo-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
--lemmo-
|
|
23
|
-
--lemmo-
|
|
24
|
-
--lemmo-
|
|
25
|
-
--lemmo-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
--lemmo-
|
|
34
|
-
--lemmo-
|
|
35
|
-
--lemmo-
|
|
36
|
-
--lemmo-
|
|
37
|
-
--lemmo-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
--lemmo-
|
|
42
|
-
--lemmo-
|
|
43
|
-
--lemmo-
|
|
44
|
-
--lemmo-color-brand-pink: #ff005b;
|
|
45
|
-
--lemmo-color-brand-pink-light: #fb398c;
|
|
46
|
-
--lemmo-color-brand-pink-deep: #ed1572;
|
|
47
|
-
--lemmo-color-brand-pink-maroon: #d1004e;
|
|
48
|
-
--lemmo-color-brand-pink-base: #8b006a;
|
|
49
|
-
--lemmo-color-brand-blue: #0256fe;
|
|
50
|
-
--lemmo-color-brand-blue-light: #245ef1;
|
|
51
|
-
--lemmo-color-brand-blue-deep: #1544ed;
|
|
52
|
-
--lemmo-color-brand-blue-overlay-a: #1d63ef;
|
|
53
|
-
--lemmo-color-brand-blue-overlay-b: #5150d0;
|
|
54
|
-
--lemmo-color-brand-cyan: #3c8cff;
|
|
55
|
-
--lemmo-color-brand-cyan-soft: #9ce6f3;
|
|
56
|
-
--lemmo-color-brand-cyan-glow: #3cd8ff;
|
|
57
|
-
--lemmo-color-brand-violet: #853cb0;
|
|
58
|
-
--lemmo-color-brand-violet-deep: #b02df2;
|
|
59
|
-
/* ------------------------------------------------------------------ */
|
|
60
|
-
/* Border / separator colors */
|
|
61
|
-
/* ------------------------------------------------------------------ */
|
|
62
|
-
--lemmo-color-separator-card: rgba(217, 217, 217, 0.04);
|
|
63
|
-
--lemmo-color-separator-strong: rgba(255, 255, 255, 0.1);
|
|
64
|
-
--lemmo-color-border-soft: rgba(255, 255, 255, 0.04);
|
|
65
|
-
--lemmo-color-border-mid: rgba(255, 255, 255, 0.05);
|
|
66
|
-
--lemmo-color-border-strong: rgba(255, 255, 255, 0.1);
|
|
67
|
-
--lemmo-color-border-ghost-light: rgba(6, 5, 21, 0.04);
|
|
68
|
-
/* ------------------------------------------------------------------ */
|
|
69
|
-
/* Alpha overlays (white / black steps) */
|
|
70
|
-
/* ------------------------------------------------------------------ */
|
|
71
|
-
--lemmo-color-white-alpha-4: rgba(255, 255, 255, 0.04);
|
|
72
|
-
--lemmo-color-white-alpha-5: rgba(255, 255, 255, 0.05);
|
|
73
|
-
--lemmo-color-white-alpha-8: rgba(255, 255, 255, 0.08);
|
|
74
|
-
--lemmo-color-white-alpha-10: rgba(255, 255, 255, 0.1);
|
|
75
|
-
--lemmo-color-white-alpha-15: rgba(255, 255, 255, 0.15);
|
|
76
|
-
--lemmo-color-white-alpha-20: rgba(255, 255, 255, 0.2);
|
|
77
|
-
--lemmo-color-white-alpha-30: rgba(255, 255, 255, 0.3);
|
|
78
|
-
--lemmo-color-white-alpha-50: rgba(255, 255, 255, 0.5);
|
|
79
|
-
--lemmo-color-white-alpha-70: rgba(255, 255, 255, 0.7);
|
|
80
|
-
--lemmo-color-black-alpha-4: rgba(0, 0, 0, 0.04);
|
|
81
|
-
--lemmo-color-black-alpha-7: rgba(0, 0, 0, 0.07);
|
|
82
|
-
--lemmo-color-black-alpha-20: rgba(0, 0, 0, 0.2);
|
|
83
|
-
--lemmo-color-black-alpha-24: rgba(0, 0, 0, 0.24);
|
|
84
|
-
/* ------------------------------------------------------------------ */
|
|
85
|
-
/* Status palette (success / warning / danger / info) */
|
|
86
|
-
/* Sourced from frontend ADR-003 & reference product audit */
|
|
87
|
-
/* ------------------------------------------------------------------ */
|
|
88
|
-
--lemmo-color-status-danger: #fa0019;
|
|
89
|
-
--lemmo-color-status-danger-soft: #ff5462;
|
|
90
|
-
--lemmo-color-status-danger-bg: #5c000f;
|
|
91
|
-
--lemmo-color-status-danger-glow: #ff1f2e;
|
|
92
|
-
--lemmo-color-status-warning: #dfab01;
|
|
93
|
-
--lemmo-color-status-warning-soft: #ffef33;
|
|
94
|
-
--lemmo-color-status-warning-bg: #523f00;
|
|
95
|
-
--lemmo-color-status-warning-glow: #fff05a;
|
|
96
|
-
--lemmo-color-status-success: #2eb844;
|
|
97
|
-
--lemmo-color-status-success-soft: #4ee466;
|
|
98
|
-
--lemmo-color-status-success-bg: #0d4a17;
|
|
99
|
-
--lemmo-color-status-success-glow: #00e62e;
|
|
100
|
-
--lemmo-color-status-info: #0256fe;
|
|
101
|
-
--lemmo-color-status-info-soft: #5b91fe;
|
|
102
|
-
--lemmo-color-status-info-bg: #000d26;
|
|
103
|
-
--lemmo-color-status-info-glow: #3cd8ff;
|
|
104
|
-
/* ------------------------------------------------------------------ */
|
|
105
|
-
/* Semantic roles — aliases of the raw tokens above */
|
|
106
|
-
/* ------------------------------------------------------------------ */
|
|
107
|
-
--lemmo-text-primary: var(--lemmo-color-font-primary);
|
|
108
|
-
--lemmo-text-secondary: var(--lemmo-color-font-secondary);
|
|
109
|
-
--lemmo-text-muted: var(--lemmo-color-font-muted);
|
|
110
|
-
--lemmo-text-faint: var(--lemmo-color-font-faint);
|
|
111
|
-
--lemmo-text-on-brand: var(--lemmo-color-font-on-brand);
|
|
112
|
-
--lemmo-text-reverted: var(--lemmo-color-font-reverted);
|
|
113
|
-
--lemmo-text-danger: var(--lemmo-color-status-danger-soft);
|
|
114
|
-
--lemmo-text-warning: var(--lemmo-color-status-warning);
|
|
115
|
-
--lemmo-text-success: var(--lemmo-color-status-success-soft);
|
|
116
|
-
--lemmo-text-info: var(--lemmo-color-status-info-soft);
|
|
117
|
-
--lemmo-surface-primary: var(--lemmo-color-surface-primary);
|
|
118
|
-
--lemmo-surface-secondary: var(--lemmo-color-surface-secondary);
|
|
119
|
-
--lemmo-surface-tertiary: var(--lemmo-color-surface-tertiary);
|
|
120
|
-
--lemmo-surface-elevated: var(--lemmo-color-surface-elevated);
|
|
121
|
-
--lemmo-surface-glass: var(--lemmo-color-surface-glass);
|
|
122
|
-
--lemmo-status-danger-bg: var(--lemmo-color-status-danger-bg);
|
|
123
|
-
--lemmo-status-warning-bg: var(--lemmo-color-status-warning-bg);
|
|
124
|
-
--lemmo-status-success-bg: var(--lemmo-color-status-success-bg);
|
|
125
|
-
--lemmo-status-info-bg: var(--lemmo-color-status-info-bg);
|
|
126
|
-
--lemmo-border-default: var(--lemmo-color-border-strong);
|
|
127
|
-
--lemmo-border-subtle: var(--lemmo-color-border-soft);
|
|
128
|
-
--lemmo-border-danger: var(--lemmo-color-status-danger);
|
|
129
|
-
--lemmo-border-warning: var(--lemmo-color-status-warning);
|
|
130
|
-
--lemmo-border-success: var(--lemmo-color-status-success);
|
|
131
|
-
--lemmo-border-info: var(--lemmo-color-status-info);
|
|
132
|
-
--lemmo-interactive-primary: var(--lemmo-color-surface-brand);
|
|
133
|
-
--lemmo-interactive-primary-hover: var(--lemmo-color-surface-brand-hover);
|
|
134
|
-
--lemmo-interactive-secondary: var(--lemmo-color-brand-blue);
|
|
135
|
-
/* ------------------------------------------------------------------ */
|
|
136
|
-
/* Frontend namespace aliases (--lemu-* == --lemmo-*) */
|
|
137
|
-
/* ------------------------------------------------------------------ */
|
|
138
|
-
--lemu-color-page-primary: var(--lemmo-color-page-primary);
|
|
139
|
-
--lemu-color-app-background: var(--lemmo-color-app-background);
|
|
140
|
-
--lemu-color-surface-tertiary: var(--lemmo-color-surface-tertiary);
|
|
141
|
-
--lemu-color-surface-primary: var(--lemmo-color-surface-primary);
|
|
142
|
-
--lemu-color-surface-secondary: var(--lemmo-color-surface-secondary);
|
|
143
|
-
--lemu-color-surface-elevated: var(--lemmo-color-surface-elevated);
|
|
144
|
-
--lemu-color-surface-glass: var(--lemmo-color-surface-glass);
|
|
145
|
-
--lemu-color-surface-brand: var(--lemmo-color-surface-brand);
|
|
146
|
-
--lemu-color-surface-brand-hover: var(--lemmo-color-surface-brand-hover);
|
|
147
|
-
--lemu-color-surface-brand-edge: var(--lemmo-color-surface-brand-edge);
|
|
148
|
-
--lemu-color-surface-brand-secondary: var(--lemmo-color-surface-brand-secondary);
|
|
149
|
-
--lemu-color-font-primary: var(--lemmo-color-font-primary);
|
|
150
|
-
--lemu-color-font-secondary: var(--lemmo-color-font-secondary);
|
|
151
|
-
--lemu-color-font-muted: var(--lemmo-color-font-muted);
|
|
152
|
-
--lemu-color-font-faint: var(--lemmo-color-font-faint);
|
|
153
|
-
--lemu-color-font-on-brand: var(--lemmo-color-font-on-brand);
|
|
154
|
-
--lemu-color-font-reverted: var(--lemmo-color-font-reverted);
|
|
155
|
-
--lemu-color-status-danger: var(--lemmo-color-status-danger);
|
|
156
|
-
--lemu-color-status-danger-soft: var(--lemmo-color-status-danger-soft);
|
|
157
|
-
--lemu-color-status-danger-bg: var(--lemmo-color-status-danger-bg);
|
|
158
|
-
--lemu-color-status-danger-glow: var(--lemmo-color-status-danger-glow);
|
|
159
|
-
--lemu-color-status-warning: var(--lemmo-color-status-warning);
|
|
160
|
-
--lemu-color-status-warning-soft: var(--lemmo-color-status-warning-soft);
|
|
161
|
-
--lemu-color-status-warning-bg: var(--lemmo-color-status-warning-bg);
|
|
162
|
-
--lemu-color-status-warning-glow: var(--lemmo-color-status-warning-glow);
|
|
163
|
-
--lemu-color-status-success: var(--lemmo-color-status-success);
|
|
164
|
-
--lemu-color-status-success-soft: var(--lemmo-color-status-success-soft);
|
|
165
|
-
--lemu-color-status-success-bg: var(--lemmo-color-status-success-bg);
|
|
166
|
-
--lemu-color-status-success-glow: var(--lemmo-color-status-success-glow);
|
|
167
|
-
--lemu-color-status-info: var(--lemmo-color-status-info);
|
|
168
|
-
--lemu-color-status-info-soft: var(--lemmo-color-status-info-soft);
|
|
169
|
-
--lemu-color-status-info-bg: var(--lemmo-color-status-info-bg);
|
|
170
|
-
--lemu-color-status-info-glow: var(--lemmo-color-status-info-glow);
|
|
171
|
-
--lemu-text-primary: var(--lemmo-text-primary);
|
|
172
|
-
--lemu-text-secondary: var(--lemmo-text-secondary);
|
|
173
|
-
--lemu-text-muted: var(--lemmo-text-muted);
|
|
174
|
-
--lemu-text-faint: var(--lemmo-text-faint);
|
|
175
|
-
--lemu-text-on-brand: var(--lemmo-text-on-brand);
|
|
176
|
-
--lemu-text-reverted: var(--lemmo-text-reverted);
|
|
177
|
-
--lemu-text-danger: var(--lemmo-text-danger);
|
|
178
|
-
--lemu-text-warning: var(--lemmo-text-warning);
|
|
179
|
-
--lemu-text-success: var(--lemmo-text-success);
|
|
180
|
-
--lemu-text-info: var(--lemmo-text-info);
|
|
181
|
-
--lemu-surface-primary: var(--lemmo-surface-primary);
|
|
182
|
-
--lemu-surface-secondary: var(--lemmo-surface-secondary);
|
|
183
|
-
--lemu-surface-tertiary: var(--lemmo-surface-tertiary);
|
|
184
|
-
--lemu-surface-elevated: var(--lemmo-surface-elevated);
|
|
185
|
-
--lemu-surface-glass: var(--lemmo-surface-glass);
|
|
186
|
-
--lemu-border-default: var(--lemmo-border-default);
|
|
187
|
-
--lemu-border-subtle: var(--lemmo-border-subtle);
|
|
188
|
-
--lemu-border-danger: var(--lemmo-border-danger);
|
|
189
|
-
--lemu-border-warning: var(--lemmo-border-warning);
|
|
190
|
-
--lemu-border-success: var(--lemmo-border-success);
|
|
191
|
-
--lemu-border-info: var(--lemmo-border-info);
|
|
192
|
-
--lemu-interactive-primary: var(--lemmo-interactive-primary);
|
|
193
|
-
--lemu-interactive-primary-hover: var(--lemmo-interactive-primary-hover);
|
|
194
|
-
--lemu-interactive-secondary: var(--lemmo-interactive-secondary);
|
|
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;
|
|
195
44
|
|
|
196
|
-
/*
|
|
197
|
-
/*
|
|
198
|
-
/*
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
--lemmo-
|
|
204
|
-
--lemmo-
|
|
205
|
-
--lemmo-
|
|
206
|
-
--lemmo-
|
|
207
|
-
--lemmo-
|
|
208
|
-
|
|
209
|
-
--lemmo-
|
|
210
|
-
--lemmo-
|
|
211
|
-
--lemmo-
|
|
212
|
-
--lemmo-
|
|
213
|
-
|
|
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);
|
|
214
83
|
--lemmo-leading-factor: 1;
|
|
215
|
-
/* Generic aliases matching frontend design-system */
|
|
216
|
-
--font-heading: var(--lemmo-font-heading);
|
|
217
|
-
--font-body: var(--lemmo-font-body);
|
|
218
|
-
--font-numeric: var(--lemmo-font-numeric);
|
|
219
|
-
--leading-factor: var(--lemmo-leading-factor);
|
|
220
|
-
/* ------------------------------------------------------------------ */
|
|
221
|
-
/* Weights */
|
|
222
|
-
/* ------------------------------------------------------------------ */
|
|
223
84
|
--lemmo-font-weight-regular: 400;
|
|
224
85
|
--lemmo-font-weight-medium: 500;
|
|
86
|
+
--lemmo-font-weight-cta: 510;
|
|
225
87
|
--lemmo-font-weight-semi-bold: 600;
|
|
226
88
|
--lemmo-font-weight-bold: 700;
|
|
227
89
|
--lemmo-font-weight-black: 900;
|
|
228
|
-
--lemmo-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
--lemmo-type-size-
|
|
233
|
-
--lemmo-type-size-
|
|
234
|
-
--lemmo-type-size-
|
|
235
|
-
--lemmo-type-size-
|
|
236
|
-
--lemmo-type-size-
|
|
237
|
-
--lemmo-type-size-
|
|
238
|
-
--lemmo-type-size-
|
|
239
|
-
--lemmo-type-size-
|
|
240
|
-
--lemmo-type-size-
|
|
241
|
-
--lemmo-type-size-
|
|
242
|
-
--lemmo-type-size-
|
|
243
|
-
--lemmo-type-
|
|
244
|
-
--lemmo-type-
|
|
245
|
-
--lemmo-type-
|
|
246
|
-
--lemmo-type-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
--lemmo-type-leading-
|
|
251
|
-
--lemmo-type-leading-
|
|
252
|
-
--lemmo-type-leading-
|
|
253
|
-
--lemmo-type-leading-
|
|
254
|
-
--lemmo-type-leading-
|
|
255
|
-
--lemmo-type-leading-800: 2rem; /* 32 px */
|
|
256
|
-
--lemmo-type-leading-900: 2.25rem; /* 36 px */
|
|
257
|
-
--lemmo-type-leading-1000: 2.5rem; /* 40 px */
|
|
258
|
-
--lemmo-type-leading-1100: 2.75rem; /* 44 px — derived */
|
|
259
|
-
--lemmo-type-leading-1200: 3rem; /* 48 px — derived */
|
|
260
|
-
--lemmo-type-leading-1300: 4rem; /* 64 px — derived */
|
|
261
|
-
--lemmo-type-leading-1400: 4.5rem; /* 72 px — derived */
|
|
262
|
-
/* ------------------------------------------------------------------ */
|
|
263
|
-
/* Letter spacing */
|
|
264
|
-
/* ------------------------------------------------------------------ */
|
|
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;
|
|
265
117
|
--lemmo-type-track-none: 0;
|
|
266
|
-
--lemmo-type-track-slight: -0.025rem;
|
|
267
|
-
--lemmo-type-track-tight: -0.075rem;
|
|
268
|
-
--lemmo-type-track-loose: 0.00625rem;
|
|
269
|
-
--lemmo-type-track-wide: 0.0125rem;
|
|
270
|
-
--lemmo-type-track-xxs: -0.3px;
|
|
271
|
-
--lemmo-type-track-5xl: -1.2px;
|
|
272
|
-
--lemmo-type-track-heading: -2%;
|
|
273
|
-
--lemmo-type-track-caps: -4%;
|
|
274
|
-
--lemmo-type-track-label: 0.2px;
|
|
275
|
-
--lemmo-type-track-caption: 0
|
|
276
|
-
--lemmo-type-track-table-head: -0.56px;
|
|
277
|
-
|
|
278
|
-
/* --- From lemmo.spacing.css --- */
|
|
279
|
-
/* ------------------------------------------------------------------ */
|
|
280
|
-
/* 4 px ladder — base unit 4px, each token a quarter-rem step */
|
|
281
|
-
/* ------------------------------------------------------------------ */
|
|
282
|
-
--lemmo-space-0: 0;
|
|
283
|
-
--lemmo-space-050: .125rem; /* 2 px */
|
|
284
|
-
--lemmo-space-100: .25rem; /* 4 px */
|
|
285
|
-
--lemmo-space-150: .375rem; /* 6 px */
|
|
286
|
-
--lemmo-space-200: .5rem; /* 8 px */
|
|
287
|
-
--lemmo-space-250: .625rem; /* 10 px */
|
|
288
|
-
--lemmo-space-300: .75rem; /* 12 px */
|
|
289
|
-
--lemmo-space-400: 1rem; /* 16 px */
|
|
290
|
-
--lemmo-space-500: 1.25rem; /* 20 px */
|
|
291
|
-
--lemmo-space-600: 1.5rem; /* 24 px */
|
|
292
|
-
--lemmo-space-700: 1.75rem; /* 28 px */
|
|
293
|
-
--lemmo-space-800: 2rem; /* 32 px */
|
|
294
|
-
--lemmo-space-1000: 2.5rem; /* 40 px */
|
|
295
|
-
--lemmo-space-1200: 3rem; /* 48 px */
|
|
296
|
-
--lemmo-space-1400: 3.5rem; /* 56 px */
|
|
297
|
-
--lemmo-space-1600: 4rem; /* 64 px */
|
|
298
|
-
--lemmo-space-2000: 5rem; /* 80 px */
|
|
299
|
-
--lemmo-space-2400: 6rem; /* 96 px */
|
|
300
|
-
/* ------------------------------------------------------------------ */
|
|
301
|
-
/* Gaps (between elements) */
|
|
302
|
-
/* ------------------------------------------------------------------ */
|
|
303
|
-
--lemmo-gap-0-5: var(--lemmo-space-050); /* 2 px (toggle thumb offset, badge micro-gap) */
|
|
304
|
-
--lemmo-gap-1: var(--lemmo-space-100); /* 4 px (inline icon+label) */
|
|
305
|
-
--lemmo-gap-1-5: var(--lemmo-space-150); /* 6 px (table rows, feature rows) */
|
|
306
|
-
--lemmo-gap-2: var(--lemmo-space-200); /* 8 px (card grid default) */
|
|
307
|
-
--lemmo-gap-2-5: var(--lemmo-space-250); /* 10 px */
|
|
308
|
-
--lemmo-gap-3: var(--lemmo-space-300); /* 12 px (billing toggle, header stacks) */
|
|
309
|
-
--lemmo-gap-4: var(--lemmo-space-400); /* 16 px (card grid ≥1280px) */
|
|
310
|
-
/* ------------------------------------------------------------------ */
|
|
311
|
-
/* Semantic rhythm (structural) */
|
|
312
|
-
/* ------------------------------------------------------------------ */
|
|
313
|
-
--lemmo-gap-card-grid: var(--lemmo-space-200); /* 8 px, 16 px at desktop */
|
|
314
|
-
--lemmo-gap-card-inner: var(--lemmo-space-200); /* 8 px between card body rows */
|
|
315
|
-
--lemmo-gap-section-sm: var(--lemmo-space-1000); /* 40 px section rhythm (py-10) */
|
|
316
|
-
--lemmo-gap-section-lg: var(--lemmo-space-2000); /* 80 px section rhythm (py-20) */
|
|
317
|
-
|
|
318
|
-
/* --- From lemmo.radius.css --- */
|
|
319
|
-
/* ------------------------------------------------------------------ */
|
|
320
|
-
/* Radius ladder (same quarter-rem basis as spacing) */
|
|
321
|
-
/* ------------------------------------------------------------------ */
|
|
322
|
-
--lemmo-radius-0: 0;
|
|
323
|
-
--lemmo-radius-050: .125rem; /* 2 px */
|
|
324
|
-
--lemmo-radius-100: .25rem; /* 4 px */
|
|
325
|
-
--lemmo-radius-150: .375rem; /* 6 px */
|
|
326
|
-
--lemmo-radius-200: .5rem; /* 8 px */
|
|
327
|
-
--lemmo-radius-250: .625rem; /* 10 px */
|
|
328
|
-
--lemmo-radius-300: .75rem; /* 12 px */
|
|
329
|
-
--lemmo-radius-400: 1rem; /* 16 px */
|
|
330
|
-
--lemmo-radius-500: 1.25rem; /* 20 px */
|
|
331
|
-
--lemmo-radius-600: 1.5rem; /* 24 px */
|
|
332
|
-
--lemmo-radius-full: 9999px; /* pill */
|
|
333
|
-
/* ------------------------------------------------------------------ */
|
|
334
|
-
/* Semantic radius */
|
|
335
|
-
/* ------------------------------------------------------------------ */
|
|
336
|
-
--lemmo-radius-control: var(--lemmo-radius-200); /* 8 px buttons, inputs */
|
|
337
|
-
--lemmo-radius-card: var(--lemmo-radius-300); /* 12 px cards, tables, CTA */
|
|
338
|
-
--lemmo-radius-badge: var(--lemmo-radius-150); /* 6 px status badges */
|
|
339
|
-
--lemmo-radius-featured-card: var(--lemmo-radius-500); /* 20 px featured surfaces */
|
|
340
|
-
--lemmo-radius-media: var(--lemmo-radius-400); /* 16 px media containers */
|
|
341
|
-
--lemmo-radius-media-lg: var(--lemmo-radius-600); /* 24 px large media */
|
|
342
|
-
--lemmo-radius-pill: var(--lemmo-radius-full); /* full round */
|
|
343
|
-
|
|
344
|
-
/* --- From lemmo.elevation.css --- */
|
|
345
|
-
/* ------------------------------------------------------------------ */
|
|
346
|
-
/* Card elevation */
|
|
347
|
-
/* ------------------------------------------------------------------ */
|
|
348
|
-
--lemmo-shadow-card-featured: 0 1.5rem 4rem rgba(0,0,0,0.24); /* highlighted card */
|
|
349
|
-
--lemmo-shadow-card-base: 10px 34px 24px 0 rgba(0,0,0,0.15); /* ambient drop */
|
|
350
|
-
/* ------------------------------------------------------------------ */
|
|
351
|
-
/* Brand CTA gloss (lime buttons) — exact inset stack */
|
|
352
|
-
/* ------------------------------------------------------------------ */
|
|
353
|
-
--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;
|
|
354
|
-
--lemmo-shadow-button-brand: var(--lemmo-shadow-button-brand-inset), 10px 34px 24px 0px rgba(0,0,0,0.15);
|
|
355
|
-
/* ------------------------------------------------------------------ */
|
|
356
|
-
/* Inner gloss (pills, offer cards) */
|
|
357
|
-
/* ------------------------------------------------------------------ */
|
|
358
|
-
--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);
|
|
359
|
-
/* ------------------------------------------------------------------ */
|
|
360
|
-
/* Brand glow */
|
|
361
|
-
/* ------------------------------------------------------------------ */
|
|
362
|
-
--lemmo-glow-brand-breathe: 0 0 0.4rem color-mix(in srgb, var(--lemmo-color-surface-brand) 56%, transparent);
|
|
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;
|
|
363
129
|
|
|
364
|
-
/*
|
|
365
|
-
/*
|
|
366
|
-
/*
|
|
367
|
-
|
|
368
|
-
--lemmo-
|
|
369
|
-
--lemmo-
|
|
370
|
-
--lemmo-
|
|
371
|
-
--lemmo-
|
|
372
|
-
--lemmo-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
--lemmo-
|
|
377
|
-
--lemmo-
|
|
378
|
-
--lemmo-
|
|
379
|
-
--lemmo-
|
|
380
|
-
--lemmo-
|
|
381
|
-
--lemmo-
|
|
382
|
-
--lemmo-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
--lemmo-
|
|
387
|
-
--lemmo-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
--lemmo-
|
|
393
|
-
--lemmo-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
--lemmo-
|
|
399
|
-
--lemmo-
|
|
400
|
-
--lemmo-
|
|
401
|
-
--lemmo-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
--lemmo-
|
|
406
|
-
--lemmo-
|
|
407
|
-
--lemmo-
|
|
408
|
-
--lemmo-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
--lemmo-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
--lemmo-gradient-overlay-darken: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2));
|
|
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;
|
|
418
183
|
|
|
419
|
-
/*
|
|
420
|
-
/*
|
|
421
|
-
/*
|
|
422
|
-
|
|
423
|
-
--lemmo-duration-
|
|
424
|
-
--lemmo-duration-
|
|
425
|
-
--lemmo-duration-
|
|
426
|
-
--lemmo-duration-
|
|
427
|
-
--lemmo-duration-
|
|
428
|
-
--lemmo-duration-
|
|
429
|
-
--lemmo-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
/* ------------------------------------------------------------------ */
|
|
433
|
-
--lemmo-ease-out: ease-out; /* cards (300/500ms) */
|
|
434
|
-
--lemmo-ease-in-out: ease-in-out; /* breathe (1.8s) */
|
|
435
|
-
--lemmo-ease-snap: cubic-bezier(0.77, 0, 0.175, 1); /* plan swap (0.42s) */
|
|
436
|
-
/* ------------------------------------------------------------------ */
|
|
437
|
-
/* Eases — named in the scale; curve is an estimate (verified names) */
|
|
438
|
-
/* ------------------------------------------------------------------ */
|
|
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);
|
|
439
197
|
--lemmo-ease-spring: cubic-bezier(0.68, -0.55, 0.265, 1.55);
|
|
440
198
|
--lemmo-ease-swift: cubic-bezier(0.55, 0, 0.1, 1);
|
|
441
199
|
--lemmo-ease-emphasized: cubic-bezier(0.2, 0, 0, 1);
|
|
442
200
|
--lemmo-ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
|
|
443
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);
|
|
444
208
|
|
|
445
|
-
/*
|
|
446
|
-
/*
|
|
447
|
-
/*
|
|
448
|
-
|
|
449
|
-
--lemmo-
|
|
450
|
-
--lemmo-
|
|
451
|
-
--lemmo-
|
|
452
|
-
--lemmo-
|
|
453
|
-
--lemmo-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
--lemmo-
|
|
458
|
-
--lemmo-
|
|
459
|
-
--lemmo-
|
|
460
|
-
--lemmo-
|
|
461
|
-
--lemmo-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
--lemmo-
|
|
466
|
-
--lemmo-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
--lemmo-
|
|
471
|
-
--lemmo-
|
|
472
|
-
--lemmo-
|
|
473
|
-
--lemmo-
|
|
474
|
-
--lemmo-
|
|
475
|
-
--lemmo-
|
|
476
|
-
--lemmo-
|
|
477
|
-
--lemmo-
|
|
478
|
-
--lemmo-
|
|
479
|
-
|
|
480
|
-
--lemmo-
|
|
481
|
-
--lemmo-
|
|
482
|
-
--lemmo-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
--lemmo-
|
|
487
|
-
--lemmo-
|
|
488
|
-
--lemmo-
|
|
489
|
-
--lemmo-
|
|
490
|
-
--lemmo-
|
|
491
|
-
--lemmo-
|
|
492
|
-
--lemmo-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
--lemmo-
|
|
499
|
-
--lemmo-
|
|
500
|
-
--lemmo-
|
|
501
|
-
--lemmo-stroke-medium: 1.5px;
|
|
502
|
-
--lemmo-stroke-thick: 2px;
|
|
503
|
-
/* ------------------------------------------------------------------ */
|
|
504
|
-
/* Semantic strokes */
|
|
505
|
-
/* ------------------------------------------------------------------ */
|
|
506
|
-
--lemmo-stroke-rim: var(--lemmo-stroke-thin); /* 1px mask-gradient rim (cards) */
|
|
507
|
-
--lemmo-stroke-border: var(--lemmo-stroke-thin); /* 1px hairline borders */
|
|
508
|
-
--lemmo-stroke-border-gradient: var(--lemmo-stroke-thick); /* 2px pad trick, highlighted cards */
|
|
509
|
-
--lemmo-stroke-divider: var(--lemmo-stroke-hairline); /* table separators */
|
|
510
|
-
|
|
511
|
-
/* --- From lemmo.breakpoints.css --- */
|
|
512
|
-
/* ------------------------------------------------------------------ */
|
|
513
|
-
/* System breakpoints (rem) */
|
|
514
|
-
/* ------------------------------------------------------------------ */
|
|
515
|
-
--lemmo-bp-base: 20rem; /* 320 px mobile floor */
|
|
516
|
-
--lemmo-bp-sm: 40rem; /* 640 px */
|
|
517
|
-
--lemmo-bp-md: 48rem; /* 768 px tablet / 2-col grid */
|
|
518
|
-
--lemmo-bp-lg: 64rem; /* 1024 px */
|
|
519
|
-
--lemmo-bp-xl: 80rem; /* 1280 px desktop / 3-col grid */
|
|
520
|
-
--lemmo-bp-2xl: 120rem; /* 1920 px */
|
|
521
|
-
--lemmo-bp-3xl: 158rem; /* 2528 px */
|
|
522
|
-
/* ------------------------------------------------------------------ */
|
|
523
|
-
/* Semantic aliases */
|
|
524
|
-
/* ------------------------------------------------------------------ */
|
|
525
|
-
--lemmo-bp-tablet: var(--lemmo-bp-md);
|
|
526
|
-
--lemmo-bp-desktop: var(--lemmo-bp-xl);
|
|
527
|
-
--lemmo-bp-wide: var(--lemmo-bp-2xl);
|
|
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;
|
|
528
265
|
|
|
529
|
-
/*
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
--
|
|
533
|
-
--
|
|
534
|
-
--
|
|
535
|
-
--
|
|
536
|
-
--
|
|
537
|
-
--
|
|
538
|
-
--
|
|
539
|
-
--
|
|
540
|
-
--
|
|
541
|
-
--
|
|
542
|
-
--
|
|
543
|
-
--
|
|
544
|
-
--
|
|
545
|
-
--
|
|
546
|
-
--
|
|
547
|
-
--
|
|
548
|
-
--
|
|
549
|
-
--
|
|
550
|
-
--
|
|
551
|
-
--
|
|
552
|
-
--
|
|
553
|
-
--
|
|
554
|
-
--
|
|
555
|
-
--
|
|
556
|
-
--
|
|
557
|
-
--
|
|
558
|
-
--color-border-danger: #fa0019;
|
|
559
|
-
--color-border-warning: #dfab01;
|
|
560
|
-
--color-border-success: #2eb844;
|
|
561
|
-
--color-border-info: #0256fe;
|
|
562
|
-
--color-interactive-primary-background: #d1fe17;
|
|
563
|
-
--color-interactive-primary-foreground: #131517;
|
|
564
|
-
--color-interactive-primary-hover: #c4ee0b;
|
|
565
|
-
--color-interactive-secondary-background: #0256fe;
|
|
566
|
-
--color-interactive-secondary-foreground: #e1e1e3;
|
|
567
|
-
--color-interactive-secondary-hover: #245ef1;
|
|
568
|
-
--color-status-danger-background: #5c000f;
|
|
569
|
-
--color-status-danger-foreground: #ff5462;
|
|
570
|
-
--color-status-danger-border: #fa0019;
|
|
571
|
-
--color-status-danger-glow: #ff1f2e;
|
|
572
|
-
--color-status-warning-background: #523f00;
|
|
573
|
-
--color-status-warning-foreground: #ffef33;
|
|
574
|
-
--color-status-warning-border: #dfab01;
|
|
575
|
-
--color-status-warning-glow: #fff05a;
|
|
576
|
-
--color-status-success-background: #0d4a17;
|
|
577
|
-
--color-status-success-foreground: #4ee466;
|
|
578
|
-
--color-status-success-border: #2eb844;
|
|
579
|
-
--color-status-success-glow: #00e62e;
|
|
580
|
-
--color-status-info-background: #000d26;
|
|
581
|
-
--color-status-info-foreground: #5b91fe;
|
|
582
|
-
--color-status-info-border: #0256fe;
|
|
583
|
-
--color-status-info-glow: #3cd8ff;
|
|
584
|
-
--radius-base: .5rem;
|
|
585
|
-
--shadow-cardFeatured: 0 1.5rem 4rem rgba(0, 0, 0, 0.24);
|
|
586
|
-
--shadow-cardBase: 10px 34px 24px 0 rgba(0, 0, 0, 0.15);
|
|
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));
|
|
587
295
|
}
|
|
588
296
|
|
|
589
|
-
/*
|
|
590
|
-
/* Automatic
|
|
591
|
-
/*
|
|
297
|
+
/* ================================================================== */
|
|
298
|
+
/* BILINGUAL LANGUAGE RULES: Automatic Font & Track Switching */
|
|
299
|
+
/* ================================================================== */
|
|
592
300
|
:root[lang='fa'],
|
|
593
301
|
[lang='fa'] {
|
|
594
|
-
--lemmo-font-body: var(--lemmo-font-
|
|
302
|
+
--lemmo-font-body: var(--lemmo-font-sans-fa);
|
|
595
303
|
--lemmo-font-heading: var(--lemmo-font-heading-fa);
|
|
596
|
-
--lemmo-font-display: var(--lemmo-font-
|
|
304
|
+
--lemmo-font-display: var(--lemmo-font-display-fa);
|
|
597
305
|
--lemmo-leading-factor: 1.15;
|
|
598
306
|
|
|
599
|
-
|
|
600
|
-
--
|
|
601
|
-
--
|
|
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;
|
|
602
313
|
}
|
|
603
314
|
|
|
604
|
-
/*
|
|
605
|
-
/*
|
|
606
|
-
/*
|
|
315
|
+
/* ================================================================== */
|
|
316
|
+
/* NUMERALS STANDARD: Satoshi Tabular Numerals (LTR Isolated) */
|
|
317
|
+
/* ================================================================== */
|
|
607
318
|
.tabular-nums,
|
|
608
319
|
[data-numeric] {
|
|
609
320
|
font-family: var(--lemmo-font-numeric, 'Satoshi', sans-serif);
|