roadmap-kit 1.0.2 → 1.0.3

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.
@@ -220,6 +220,18 @@
220
220
  COMPONENT STYLES
221
221
  ============================================ */
222
222
  @layer components {
223
+ /* Card Dark - Base component for dark cards */
224
+ .card-dark {
225
+ background: var(--bg-card);
226
+ border: 1px solid var(--border-color);
227
+ transition: var(--transition);
228
+ }
229
+
230
+ .card-dark:hover {
231
+ background: var(--bg-card-hover);
232
+ border-color: var(--border-color-strong);
233
+ }
234
+
223
235
  /* Card */
224
236
  .theme-card {
225
237
  background: var(--bg-card);
@@ -514,6 +526,263 @@
514
526
  .theme-progress-fill {
515
527
  border-radius: 9999px;
516
528
  }
529
+
530
+ /* ========== GLASS CARD OVERRIDES ========== */
531
+ .card-dark {
532
+ background: var(--bg-card) !important;
533
+ backdrop-filter: var(--backdrop-blur);
534
+ box-shadow: var(--shadow-sm);
535
+ }
536
+
537
+ .card-dark:hover {
538
+ box-shadow: var(--shadow-md);
539
+ }
540
+
541
+ /* ========== GLASS TYPOGRAPHY OVERRIDES ========== */
542
+ /* Use clean sans-serif for most UI elements instead of monospace */
543
+ /* This creates a modern, clean aesthetic while preserving code blocks */
544
+
545
+ /* MASTER OVERRIDE: All font-mono elements use body font (except code) */
546
+ .font-mono {
547
+ font-family: var(--font-body) !important;
548
+ letter-spacing: -0.01em !important;
549
+ }
550
+
551
+ /* PRESERVE: Keep monospace ONLY for actual code elements */
552
+ code,
553
+ pre,
554
+ pre *,
555
+ code *,
556
+ .code-block,
557
+ .code-block *,
558
+ [data-code],
559
+ [data-code] *,
560
+ kbd,
561
+ .theme-input code,
562
+ textarea.font-mono,
563
+ pre.font-mono,
564
+ code.font-mono {
565
+ font-family: var(--font-mono) !important;
566
+ letter-spacing: 0 !important;
567
+ }
568
+
569
+ /* Override font-display to use heading font with semi-bold weight */
570
+ .font-display {
571
+ font-family: var(--font-heading) !important;
572
+ font-weight: 600 !important;
573
+ letter-spacing: -0.02em !important;
574
+ }
575
+
576
+ /* Remove terminal-style wide tracking (creates cleaner look) */
577
+ .tracking-wider,
578
+ .tracking-widest {
579
+ letter-spacing: 0.01em !important;
580
+ }
581
+
582
+ /* Uppercase labels - refined appearance */
583
+ .uppercase {
584
+ font-weight: 600 !important;
585
+ letter-spacing: 0.03em !important;
586
+ }
587
+
588
+ /* Headings and titles - use heading font */
589
+ h1, h2, h3, h4, h5, h6 {
590
+ font-family: var(--font-heading) !important;
591
+ font-weight: 600 !important;
592
+ letter-spacing: -0.02em !important;
593
+ }
594
+
595
+ /* Large text classes - heading font */
596
+ .text-xl,
597
+ .text-2xl,
598
+ .text-3xl,
599
+ .text-4xl,
600
+ .text-lg {
601
+ font-family: var(--font-heading) !important;
602
+ letter-spacing: -0.02em !important;
603
+ }
604
+
605
+ /* Stats and numbers - use tabular figures for alignment */
606
+ .font-display.text-lg,
607
+ .font-display.text-xl,
608
+ .font-display.text-2xl,
609
+ .font-display.text-3xl,
610
+ .font-display.text-4xl {
611
+ font-variant-numeric: tabular-nums !important;
612
+ font-weight: 700 !important;
613
+ }
614
+
615
+ /* Buttons - clean modern style with medium weight */
616
+ button,
617
+ .btn,
618
+ [role="button"] {
619
+ font-family: var(--font-body) !important;
620
+ font-weight: 500 !important;
621
+ letter-spacing: 0 !important;
622
+ }
623
+
624
+ /* Small text classes - body font with medium weight */
625
+ .text-xs,
626
+ .text-sm {
627
+ font-family: var(--font-body) !important;
628
+ font-weight: 500 !important;
629
+ }
630
+
631
+ /* Tiny text - slightly lighter */
632
+ .text-\[10px\],
633
+ .text-\[11px\],
634
+ .text-\[9px\] {
635
+ font-family: var(--font-body) !important;
636
+ font-weight: 500 !important;
637
+ }
638
+
639
+ /* Section headers with # prefix - treat like titles */
640
+ h3.font-mono,
641
+ h4.font-mono {
642
+ font-family: var(--font-heading) !important;
643
+ font-weight: 600 !important;
644
+ }
645
+
646
+ /* Table text - cleaner look */
647
+ table,
648
+ th,
649
+ td {
650
+ font-family: var(--font-body) !important;
651
+ }
652
+
653
+ /* Select and input elements */
654
+ select,
655
+ input,
656
+ textarea {
657
+ font-family: var(--font-body) !important;
658
+ }
659
+
660
+ /* Labels in forms */
661
+ label {
662
+ font-family: var(--font-body) !important;
663
+ font-weight: 500 !important;
664
+ }
665
+
666
+ /* Badges and pills - consistent styling */
667
+ .px-2.py-1,
668
+ .px-2\.5.py-1,
669
+ .px-2.py-0\.5,
670
+ .px-3.py-1,
671
+ .px-3.py-1\.5 {
672
+ font-family: var(--font-body) !important;
673
+ font-weight: 600 !important;
674
+ letter-spacing: 0.01em !important;
675
+ }
676
+
677
+ /* Keyboard shortcuts - keep monospace */
678
+ kbd {
679
+ font-family: var(--font-mono) !important;
680
+ font-size: 0.75em !important;
681
+ background: var(--bg-secondary);
682
+ padding: 2px 6px;
683
+ border-radius: 4px;
684
+ }
685
+
686
+ /* Modal and dialog headings */
687
+ [role="dialog"] h2,
688
+ [role="dialog"] h3,
689
+ [role="alertdialog"] h2,
690
+ [role="alertdialog"] h3 {
691
+ font-family: var(--font-heading) !important;
692
+ font-weight: 600 !important;
693
+ letter-spacing: -0.02em !important;
694
+ }
695
+
696
+ /* Remove Matrix-style effects */
697
+ .crt-glow,
698
+ .text-glow,
699
+ .glow-matrix {
700
+ text-shadow: none !important;
701
+ box-shadow: none !important;
702
+ }
703
+
704
+ /* Replace glow with subtle shadow */
705
+ .glow-matrix {
706
+ box-shadow: var(--shadow-md) !important;
707
+ }
708
+
709
+ /* Softer colors for gray text - use theme variables */
710
+ .text-gray-600 {
711
+ color: var(--text-muted) !important;
712
+ }
713
+
714
+ .text-gray-500 {
715
+ color: var(--text-secondary) !important;
716
+ }
717
+
718
+ .text-gray-400 {
719
+ color: var(--text-secondary) !important;
720
+ }
721
+
722
+ .text-gray-700,
723
+ .text-gray-800 {
724
+ color: var(--text-muted) !important;
725
+ }
726
+
727
+ /* Status text colors - use CSS variables for consistency */
728
+ .text-matrix {
729
+ color: var(--accent-primary) !important;
730
+ }
731
+
732
+ .text-cyber {
733
+ color: var(--accent-tertiary) !important;
734
+ }
735
+
736
+ .text-signal {
737
+ color: var(--accent-secondary) !important;
738
+ }
739
+
740
+ .text-alert {
741
+ color: var(--accent-danger) !important;
742
+ }
743
+
744
+ /* Border colors - softer in Glass theme */
745
+ .border-matrix\/30,
746
+ .border-matrix\/20,
747
+ .border-matrix\/50 {
748
+ border-color: color-mix(in srgb, var(--accent-primary) 20%, var(--border-color)) !important;
749
+ }
750
+
751
+ .border-cyber\/30,
752
+ .border-cyber\/20 {
753
+ border-color: color-mix(in srgb, var(--accent-tertiary) 20%, var(--border-color)) !important;
754
+ }
755
+
756
+ .border-signal\/30,
757
+ .border-signal\/20 {
758
+ border-color: color-mix(in srgb, var(--accent-secondary) 20%, var(--border-color)) !important;
759
+ }
760
+
761
+ /* Background tints - very subtle */
762
+ .bg-matrix\/5,
763
+ .bg-matrix\/10 {
764
+ background: color-mix(in srgb, var(--accent-primary) 5%, var(--bg-card)) !important;
765
+ }
766
+
767
+ .bg-cyber\/5,
768
+ .bg-cyber\/10 {
769
+ background: color-mix(in srgb, var(--accent-tertiary) 5%, var(--bg-card)) !important;
770
+ }
771
+
772
+ .bg-signal\/5,
773
+ .bg-signal\/10 {
774
+ background: color-mix(in srgb, var(--accent-secondary) 5%, var(--bg-card)) !important;
775
+ }
776
+
777
+ /* void backgrounds - use theme card color */
778
+ .bg-void-100 {
779
+ background: var(--bg-secondary) !important;
780
+ }
781
+
782
+ /* White text - use theme primary */
783
+ .text-white {
784
+ color: var(--text-primary) !important;
785
+ }
517
786
  }
518
787
 
519
788
  /* ============================================
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "roadmap-kit",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "AI-powered project management for Vibe Coding. Track features, tasks, and technical debt with a visual dashboard.",
5
5
  "main": "cli.js",
6
6
  "type": "module",