arxatec-ui 0.1.35 → 0.1.36

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.
Files changed (2) hide show
  1. package/dist/styles.css +68 -12
  2. package/package.json +1 -1
package/dist/styles.css CHANGED
@@ -143,6 +143,32 @@
143
143
  --radius-md: calc(var(--radius) - 2px);
144
144
  --radius-lg: var(--radius);
145
145
  --radius-xl: calc(var(--radius) + 4px);
146
+ --text-xs: var(--font-size-xs);
147
+ --text-xs--line-height: var(--font-line-height-xs);
148
+ --text-sm: var(--font-size-sm);
149
+ --text-sm--line-height: var(--font-line-height-sm);
150
+ --text-base: var(--font-size-base);
151
+ --text-base--line-height: var(--font-line-height-base);
152
+ --text-lg: var(--font-size-lg);
153
+ --text-lg--line-height: var(--font-line-height-lg);
154
+ --text-xl: var(--font-size-xl);
155
+ --text-xl--line-height: var(--font-line-height-xl);
156
+ --text-2xl: var(--font-size-2xl);
157
+ --text-2xl--line-height: var(--font-line-height-2xl);
158
+ --text-3xl: var(--font-size-3xl);
159
+ --text-3xl--line-height: var(--font-line-height-3xl);
160
+ --text-4xl: var(--font-size-4xl);
161
+ --text-4xl--line-height: var(--font-line-height-4xl);
162
+ --text-5xl: var(--font-size-5xl);
163
+ --text-5xl--line-height: var(--font-line-height-5xl);
164
+ --text-6xl: var(--font-size-6xl);
165
+ --text-6xl--line-height: var(--font-line-height-6xl);
166
+ --text-7xl: var(--font-size-7xl);
167
+ --text-7xl--line-height: var(--font-line-height-7xl);
168
+ --text-8xl: var(--font-size-8xl);
169
+ --text-8xl--line-height: var(--font-line-height-8xl);
170
+ --text-9xl: var(--font-size-9xl);
171
+ --text-9xl--line-height: var(--font-line-height-9xl);
146
172
  --color-background: var(--background);
147
173
  --color-foreground: var(--foreground);
148
174
  --color-card: var(--card);
@@ -343,6 +369,36 @@
343
369
 
344
370
  :root {
345
371
  --radius: 0.5rem;
372
+
373
+ /* Typography scale (base 16px) */
374
+ --font-size-xs: 0.625rem; /* 10px */
375
+ --font-size-sm: 0.75rem; /* 12px */
376
+ --font-size-base: 0.875rem; /* 14px */
377
+ --font-size-lg: 1rem; /* 16px */
378
+ --font-size-xl: 1.125rem; /* 18px */
379
+ --font-size-2xl: 1.375rem; /* 22px */
380
+ --font-size-3xl: 1.75rem; /* 28px */
381
+ --font-size-4xl: 2.125rem; /* 34px */
382
+ --font-size-5xl: 2.875rem; /* 46px */
383
+ --font-size-6xl: 3.625rem; /* 58px */
384
+ --font-size-7xl: 4.375rem; /* 70px */
385
+ --font-size-8xl: 5.875rem; /* 94px */
386
+ --font-size-9xl: 7.875rem; /* 126px */
387
+
388
+ --font-line-height-xs: 0.875rem; /* 14px */
389
+ --font-line-height-sm: 1.125rem; /* 18px */
390
+ --font-line-height-base: 1.25rem; /* 20px */
391
+ --font-line-height-lg: 1.5rem; /* 24px */
392
+ --font-line-height-xl: 1.625rem; /* 26px */
393
+ --font-line-height-2xl: 1.875rem; /* 30px */
394
+ --font-line-height-3xl: 2.25rem; /* 36px */
395
+ --font-line-height-4xl: 2.625rem; /* 42px */
396
+ --font-line-height-5xl: 1;
397
+ --font-line-height-6xl: 1;
398
+ --font-line-height-7xl: 1;
399
+ --font-line-height-8xl: 1;
400
+ --font-line-height-9xl: 1;
401
+
346
402
  --background: oklch(1 0 0);
347
403
  --foreground: oklch(0.145 0 0);
348
404
  --card: oklch(98.5% 0 0);
@@ -549,17 +605,17 @@
549
605
  .dark {
550
606
  --background: oklch(0.145 0 0);
551
607
  --foreground: oklch(0.985 0 0);
552
- --card: oklch(0.205 0 0);
608
+ --card: oklch(0.168 0 0);
553
609
  --card-foreground: oklch(0.985 0 0);
554
- --popover: oklch(0.205 0 0);
610
+ --popover: oklch(0.168 0 0);
555
611
  --popover-foreground: oklch(0.985 0 0);
556
612
  --primary: oklch(0.922 0 0);
557
613
  --primary-foreground: oklch(0.205 0 0);
558
- --secondary: oklch(0.269 0 0);
614
+ --secondary: oklch(0.182 0 0);
559
615
  --secondary-foreground: oklch(0.708 0 0);
560
- --muted: oklch(0.269 0 0);
616
+ --muted: oklch(0.182 0 0);
561
617
  --muted-foreground: oklch(0.708 0 0);
562
- --accent: oklch(0.269 0 0);
618
+ --accent: oklch(0.182 0 0);
563
619
  --accent-foreground: oklch(0.985 0 0);
564
620
  --destructive: oklch(0.704 0.191 22.216);
565
621
  --border: oklch(1 0 0 / 4.5%);
@@ -570,14 +626,14 @@
570
626
  --chart-3: oklch(0.769 0.188 70.08);
571
627
  --chart-4: oklch(0.627 0.265 303.9);
572
628
  --chart-5: oklch(0.645 0.246 16.439);
573
- --sidebar: oklch(0.205 0 0);
629
+ --sidebar: oklch(0.168 0 0);
574
630
  --sidebar-foreground: oklch(0.985 0 0);
575
631
  --sidebar-primary: oklch(0.488 0.243 264.376);
576
632
  --sidebar-primary-foreground: oklch(0.985 0 0);
577
- --sidebar-accent: oklch(0.269 0 0);
633
+ --sidebar-accent: oklch(0.182 0 0);
578
634
  --sidebar-accent-foreground: oklch(0.985 0 0);
579
635
  --sidebar-border: oklch(1 0 0 / 4.5%);
580
- --sidebar-ring: oklch(0.33 0 0);
636
+ --sidebar-ring: oklch(0.5 0 0);
581
637
 
582
638
  /* Status colors for toast and messages */
583
639
  --status-background-error: oklch(27.1% 0.105 12.094);
@@ -588,14 +644,14 @@
588
644
  --status-foreground-warning: oklch(79.5% 0.184 86.047);
589
645
  --status-background-info: oklch(29.3% 0.066 243.157);
590
646
  --status-foreground-info: oklch(68.5% 0.169 237.323);
591
- --status-background-loading: oklch(0.269 0 0);
647
+ --status-background-loading: oklch(0.182 0 0);
592
648
  --status-foreground-loading: oklch(0.985 0 0);
593
649
 
594
650
  /* Status colors for card */
595
651
  --status-card-background-error: oklch(27.1% 0.105 12.094);
596
652
  --status-card-foreground-error: oklch(64.5% 0.246 16.439);
597
653
  --status-card-background-icon-error: oklch(33.1% 0.105 12.094);
598
- --status-card-background-empty: oklch(0.269 0 0);
654
+ --status-card-background-empty: oklch(0.182 0 0);
599
655
  --status-card-foreground-empty: oklch(0.985 0 0);
600
656
  --status-card-background-icon-empty: oklch(0.32 0 0);
601
657
 
@@ -646,7 +702,7 @@
646
702
 
647
703
  /* License status colors */
648
704
  --license-valid-foreground: oklch(0.708 0 0);
649
- --license-valid-background: oklch(0.269 0 0);
705
+ --license-valid-background: oklch(0.182 0 0);
650
706
  --license-invalid-foreground: oklch(64.5% 0.246 16.439);
651
707
  --license-invalid-background: oklch(27.1% 0.105 12.094);
652
708
  --license-no-config-background: oklch(29.3% 0.066 243.157);
@@ -734,7 +790,7 @@
734
790
  @apply border-border outline-ring/50;
735
791
  }
736
792
  body {
737
- @apply bg-background text-foreground;
793
+ @apply bg-background text-foreground text-base;
738
794
  }
739
795
  }
740
796
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arxatec-ui",
3
- "version": "0.1.35",
3
+ "version": "0.1.36",
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",