arxatec-ui 0.1.11 → 0.1.13
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/styles.css +84 -84
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -128,47 +128,47 @@
|
|
|
128
128
|
|
|
129
129
|
/* Task tag colors */
|
|
130
130
|
|
|
131
|
-
--task-tag-foreground-gray:
|
|
132
|
-
--task-tag-background-gray:
|
|
131
|
+
--color-task-tag-foreground-gray: var(--task-tag-foreground-gray);
|
|
132
|
+
--color-task-tag-background-gray: var(--task-tag-background-gray);
|
|
133
133
|
|
|
134
|
-
--task-tag-foreground-red:
|
|
135
|
-
--task-tag-background-red:
|
|
134
|
+
--color-task-tag-foreground-red: var(--task-tag-foreground-red);
|
|
135
|
+
--color-task-tag-background-red: var(--task-tag-background-red);
|
|
136
136
|
|
|
137
|
-
--task-tag-foreground-yellow:
|
|
138
|
-
--task-tag-background-yellow:
|
|
137
|
+
--color-task-tag-foreground-yellow: var(--task-tag-foreground-yellow);
|
|
138
|
+
--color-task-tag-background-yellow: var(--task-tag-background-yellow);
|
|
139
139
|
|
|
140
|
-
--task-tag-foreground-orange:
|
|
141
|
-
--task-tag-background-orange:
|
|
140
|
+
--color-task-tag-foreground-orange: var(--task-tag-foreground-orange);
|
|
141
|
+
--color-task-tag-background-orange: var(--task-tag-background-orange);
|
|
142
142
|
|
|
143
|
-
--task-tag-foreground-purple:
|
|
144
|
-
--task-tag-background-purple:
|
|
143
|
+
--color-task-tag-foreground-purple: var(--task-tag-foreground-purple);
|
|
144
|
+
--color-task-tag-background-purple: var(--task-tag-background-purple);
|
|
145
145
|
|
|
146
|
-
--task-tag-foreground-blue:
|
|
147
|
-
--task-tag-background-blue:
|
|
146
|
+
--color-task-tag-foreground-blue: var(--task-tag-foreground-blue);
|
|
147
|
+
--color-task-tag-background-blue: var(--task-tag-background-blue);
|
|
148
148
|
|
|
149
|
-
--task-tag-foreground-indigo:
|
|
150
|
-
--task-tag-background-indigo:
|
|
149
|
+
--color-task-tag-foreground-indigo: var(--task-tag-foreground-indigo);
|
|
150
|
+
--color-task-tag-background-indigo: var(--task-tag-background-indigo);
|
|
151
151
|
|
|
152
|
-
--task-tag-foreground-sky:
|
|
153
|
-
--task-tag-background-sky:
|
|
152
|
+
--color-task-tag-foreground-sky: var(--task-tag-foreground-sky);
|
|
153
|
+
--color-task-tag-background-sky: var(--task-tag-background-sky);
|
|
154
154
|
|
|
155
|
-
--task-tag-foreground-green:
|
|
156
|
-
--task-tag-background-green:
|
|
155
|
+
--color-task-tag-foreground-green: var(--task-tag-foreground-green);
|
|
156
|
+
--color-task-tag-background-green: var(--task-tag-background-green);
|
|
157
157
|
|
|
158
|
-
--task-tag-foreground-lime:
|
|
159
|
-
--task-tag-background-lime:
|
|
158
|
+
--color-task-tag-foreground-lime: var(--task-tag-foreground-lime);
|
|
159
|
+
--color-task-tag-background-lime: var(--task-tag-background-lime);
|
|
160
160
|
|
|
161
|
-
--task-priority-foreground-low:
|
|
162
|
-
--task-priority-background-low:
|
|
161
|
+
--color-task-priority-foreground-low: var(--task-priority-foreground-low);
|
|
162
|
+
--color-task-priority-background-low: var(--task-priority-background-low);
|
|
163
163
|
|
|
164
|
-
--task-priority-foreground-medium:
|
|
165
|
-
--task-priority-background-medium:
|
|
164
|
+
--color-task-priority-foreground-medium: var(--task-priority-foreground-medium);
|
|
165
|
+
--color-task-priority-background-medium: var(--task-priority-background-medium);
|
|
166
166
|
|
|
167
|
-
--task-priority-foreground-high:
|
|
168
|
-
--task-priority-background-high:
|
|
167
|
+
--color-task-priority-foreground-high: var(--task-priority-foreground-high);
|
|
168
|
+
--color-task-priority-background-high: var(--task-priority-background-high);
|
|
169
169
|
|
|
170
|
-
--task-priority-foreground-critical:
|
|
171
|
-
--task-priority-background-critical:
|
|
170
|
+
--color-task-priority-foreground-critical: var(--task-priority-foreground-critical);
|
|
171
|
+
--color-task-priority-background-critical: var(--task-priority-background-critical);
|
|
172
172
|
}
|
|
173
173
|
|
|
174
174
|
:root {
|
|
@@ -329,47 +329,47 @@
|
|
|
329
329
|
--editor-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
330
330
|
|
|
331
331
|
/* Task tag colors */
|
|
332
|
-
--task-tag-foreground-gray: oklch(
|
|
333
|
-
--task-tag-background-gray: oklch(
|
|
332
|
+
--task-tag-foreground-gray: oklch(32% 0.018 260);
|
|
333
|
+
--task-tag-background-gray: oklch(92% 0.01 260);
|
|
334
334
|
|
|
335
|
-
--task-tag-foreground-red: oklch(
|
|
336
|
-
--task-tag-background-red: oklch(
|
|
335
|
+
--task-tag-foreground-red: oklch(30% 0.09 26);
|
|
336
|
+
--task-tag-background-red: oklch(88% 0.06 25);
|
|
337
337
|
|
|
338
|
-
--task-tag-foreground-yellow: oklch(
|
|
339
|
-
--task-tag-background-yellow: oklch(
|
|
338
|
+
--task-tag-foreground-yellow: oklch(36% 0.08 58);
|
|
339
|
+
--task-tag-background-yellow: oklch(90% 0.07 95);
|
|
340
340
|
|
|
341
|
-
--task-tag-foreground-orange: oklch(
|
|
342
|
-
--task-tag-background-orange: oklch(
|
|
341
|
+
--task-tag-foreground-orange: oklch(36% 0.11 42);
|
|
342
|
+
--task-tag-background-orange: oklch(90% 0.07 50);
|
|
343
343
|
|
|
344
|
-
--task-tag-foreground-purple: oklch(
|
|
345
|
-
--task-tag-background-purple: oklch(
|
|
344
|
+
--task-tag-foreground-purple: oklch(32% 0.14 305);
|
|
345
|
+
--task-tag-background-purple: oklch(90% 0.08 302);
|
|
346
346
|
|
|
347
|
-
--task-tag-foreground-blue: oklch(
|
|
348
|
-
--task-tag-background-blue: oklch(
|
|
347
|
+
--task-tag-foreground-blue: oklch(32% 0.12 265);
|
|
348
|
+
--task-tag-background-blue: oklch(88% 0.08 260);
|
|
349
349
|
|
|
350
|
-
--task-tag-foreground-indigo: oklch(
|
|
351
|
-
--task-tag-background-indigo: oklch(
|
|
350
|
+
--task-tag-foreground-indigo: oklch(30% 0.12 278);
|
|
351
|
+
--task-tag-background-indigo: oklch(88% 0.08 277);
|
|
352
352
|
|
|
353
|
-
--task-tag-foreground-sky: oklch(
|
|
354
|
-
--task-tag-background-sky: oklch(
|
|
353
|
+
--task-tag-foreground-sky: oklch(30% 0.08 241);
|
|
354
|
+
--task-tag-background-sky: oklch(88% 0.06 241);
|
|
355
355
|
|
|
356
|
-
--task-tag-foreground-green: oklch(
|
|
357
|
-
--task-tag-background-green: oklch(
|
|
356
|
+
--task-tag-foreground-green: oklch(28% 0.065 152.934);
|
|
357
|
+
--task-tag-background-green: oklch(86% 0.07 152);
|
|
358
358
|
|
|
359
|
-
--task-tag-foreground-lime: oklch(
|
|
360
|
-
--task-tag-background-lime: oklch(
|
|
359
|
+
--task-tag-foreground-lime: oklch(32% 0.08 131);
|
|
360
|
+
--task-tag-background-lime: oklch(90% 0.08 130);
|
|
361
361
|
|
|
362
|
-
--task-priority-foreground-low: oklch(
|
|
363
|
-
--task-priority-background-low: oklch(
|
|
362
|
+
--task-priority-foreground-low: oklch(28% 0.065 152.934);
|
|
363
|
+
--task-priority-background-low: oklch(86% 0.07 152);
|
|
364
364
|
|
|
365
|
-
--task-priority-foreground-medium: oklch(
|
|
366
|
-
--task-priority-background-medium: oklch(
|
|
365
|
+
--task-priority-foreground-medium: oklch(30% 0.07 53.813);
|
|
366
|
+
--task-priority-background-medium: oklch(88% 0.08 85);
|
|
367
367
|
|
|
368
|
-
--task-priority-foreground-high: oklch(
|
|
369
|
-
--task-priority-background-high: oklch(
|
|
368
|
+
--task-priority-foreground-high: oklch(32% 0.1 32);
|
|
369
|
+
--task-priority-background-high: oklch(88% 0.07 35);
|
|
370
370
|
|
|
371
|
-
--task-priority-foreground-critical: oklch(
|
|
372
|
-
--task-priority-background-critical: oklch(
|
|
371
|
+
--task-priority-foreground-critical: oklch(28% 0.12 22);
|
|
372
|
+
--task-priority-background-critical: oklch(90% 0.09 22);
|
|
373
373
|
}
|
|
374
374
|
|
|
375
375
|
.dark {
|
|
@@ -512,47 +512,47 @@
|
|
|
512
512
|
--editor-border-strong: hsl(240 5% 64.9%);
|
|
513
513
|
|
|
514
514
|
/* Task colors */
|
|
515
|
-
--task-tag-foreground-gray: oklch(
|
|
516
|
-
--task-tag-background-gray: oklch(
|
|
515
|
+
--task-tag-foreground-gray: oklch(32% 0.018 260);
|
|
516
|
+
--task-tag-background-gray: oklch(92% 0.01 260);
|
|
517
517
|
|
|
518
|
-
--task-tag-foreground-red: oklch(
|
|
519
|
-
--task-tag-background-red: oklch(
|
|
518
|
+
--task-tag-foreground-red: oklch(30% 0.09 26);
|
|
519
|
+
--task-tag-background-red: oklch(88% 0.06 25);
|
|
520
520
|
|
|
521
|
-
--task-tag-foreground-yellow: oklch(
|
|
522
|
-
--task-tag-background-yellow: oklch(
|
|
521
|
+
--task-tag-foreground-yellow: oklch(36% 0.08 58);
|
|
522
|
+
--task-tag-background-yellow: oklch(90% 0.07 95);
|
|
523
523
|
|
|
524
|
-
--task-tag-foreground-orange: oklch(
|
|
525
|
-
--task-tag-background-orange: oklch(
|
|
524
|
+
--task-tag-foreground-orange: oklch(36% 0.11 42);
|
|
525
|
+
--task-tag-background-orange: oklch(90% 0.07 50);
|
|
526
526
|
|
|
527
|
-
--task-tag-foreground-purple: oklch(
|
|
528
|
-
--task-tag-background-purple: oklch(
|
|
527
|
+
--task-tag-foreground-purple: oklch(32% 0.14 305);
|
|
528
|
+
--task-tag-background-purple: oklch(90% 0.08 302);
|
|
529
529
|
|
|
530
|
-
--task-tag-foreground-blue: oklch(
|
|
531
|
-
--task-tag-background-blue: oklch(
|
|
530
|
+
--task-tag-foreground-blue: oklch(32% 0.12 265);
|
|
531
|
+
--task-tag-background-blue: oklch(88% 0.08 260);
|
|
532
532
|
|
|
533
|
-
--task-tag-foreground-indigo: oklch(
|
|
534
|
-
--task-tag-background-indigo: oklch(
|
|
533
|
+
--task-tag-foreground-indigo: oklch(30% 0.12 278);
|
|
534
|
+
--task-tag-background-indigo: oklch(88% 0.08 277);
|
|
535
535
|
|
|
536
|
-
--task-tag-foreground-sky: oklch(
|
|
537
|
-
--task-tag-background-sky: oklch(
|
|
536
|
+
--task-tag-foreground-sky: oklch(30% 0.08 241);
|
|
537
|
+
--task-tag-background-sky: oklch(88% 0.06 241);
|
|
538
538
|
|
|
539
|
-
--task-tag-foreground-green: oklch(
|
|
540
|
-
--task-tag-background-green: oklch(
|
|
539
|
+
--task-tag-foreground-green: oklch(28% 0.065 152.934);
|
|
540
|
+
--task-tag-background-green: oklch(86% 0.07 152);
|
|
541
541
|
|
|
542
|
-
--task-tag-foreground-lime: oklch(
|
|
543
|
-
--task-tag-background-lime: oklch(
|
|
542
|
+
--task-tag-foreground-lime: oklch(32% 0.08 131);
|
|
543
|
+
--task-tag-background-lime: oklch(90% 0.08 130);
|
|
544
544
|
|
|
545
|
-
--task-priority-foreground-low: oklch(
|
|
546
|
-
--task-priority-background-low: oklch(
|
|
545
|
+
--task-priority-foreground-low: oklch(28% 0.065 152.934);
|
|
546
|
+
--task-priority-background-low: oklch(86% 0.07 152);
|
|
547
547
|
|
|
548
|
-
--task-priority-foreground-medium: oklch(
|
|
549
|
-
--task-priority-background-medium: oklch(
|
|
548
|
+
--task-priority-foreground-medium: oklch(30% 0.07 53.813);
|
|
549
|
+
--task-priority-background-medium: oklch(88% 0.08 85);
|
|
550
550
|
|
|
551
|
-
--task-priority-foreground-high: oklch(
|
|
552
|
-
--task-priority-background-high: oklch(
|
|
551
|
+
--task-priority-foreground-high: oklch(32% 0.1 32);
|
|
552
|
+
--task-priority-background-high: oklch(88% 0.07 35);
|
|
553
553
|
|
|
554
|
-
--task-priority-foreground-critical: oklch(
|
|
555
|
-
--task-priority-background-critical: oklch(
|
|
554
|
+
--task-priority-foreground-critical: oklch(28% 0.12 22);
|
|
555
|
+
--task-priority-background-critical: oklch(90% 0.09 22);
|
|
556
556
|
}
|
|
557
557
|
|
|
558
558
|
@layer base {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "arxatec-ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
4
4
|
"description": "React component library for building Arxatec product UIs—built on established ecosystem libraries for a consistent, efficient workflow. More at https://arxatec.net.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|