@illuma-ai/codeviz 1.0.6 → 1.0.8

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/index.js CHANGED
@@ -24576,16 +24576,22 @@ Format: **Draw.io XML** (mxGraphModel). The renderer includes ALL draw.io shape
24576
24576
  - Basic: \`rounded=1;whiteSpace=wrap;html=1;fillColor=#COLOR;strokeColor=#COLOR;fontColor=#fff;\` for simple boxes`;
24577
24577
  }
24578
24578
  const Xm = `
24579
+ /* ── Font: Roboto ── */
24580
+ @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap');
24581
+ * { font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }
24582
+
24579
24583
  /* ── Banking Theme: CSS Custom Properties ── */
24580
24584
  .theme-light {
24581
24585
  --surface-primary: #ffffff;
24582
24586
  --surface-secondary: #f7f7f8;
24583
- --surface-tertiary: #ececf1;
24587
+ --surface-tertiary: #ececec;
24588
+ --surface-left-nav: #ededee;
24589
+ --surface-active: #e3e3e3;
24584
24590
  --text-primary: #212121;
24585
- --text-secondary: #666666;
24586
- --text-tertiary: #999999;
24587
- --border-light: #e5e5e5;
24588
- --border-medium: #d1d1d1;
24591
+ --text-secondary: #424242;
24592
+ --text-tertiary: #595959;
24593
+ --border-light: #e3e3e3;
24594
+ --border-medium: #cdcdcd;
24589
24595
  --accent-cyan: #00C1D5;
24590
24596
  --accent-navy: #000033;
24591
24597
  --status-positive: #16a34a;
@@ -24596,11 +24602,13 @@ const Xm = `
24596
24602
  --surface-primary: #0d0d0d;
24597
24603
  --surface-secondary: #212121;
24598
24604
  --surface-tertiary: #2f2f2f;
24605
+ --surface-left-nav: #1a1a1b;
24606
+ --surface-active: #595959;
24599
24607
  --text-primary: #ececec;
24600
- --text-secondary: #a0a0a0;
24601
- --text-tertiary: #737373;
24608
+ --text-secondary: #cdcdcd;
24609
+ --text-tertiary: #595959;
24602
24610
  --border-light: #3a3a3b;
24603
- --border-medium: #4a4a4b;
24611
+ --border-medium: #424242;
24604
24612
  --accent-cyan: #00C1D5;
24605
24613
  --accent-navy: #000033;
24606
24614
  --status-positive: #22c55e;
@@ -24621,6 +24629,8 @@ const Xm = `
24621
24629
  .text-accent-navy { color: var(--accent-navy); }
24622
24630
  .bg-accent-cyan { background-color: var(--accent-cyan); }
24623
24631
  .bg-accent-navy { background-color: var(--accent-navy); }
24632
+ .bg-surface-left-nav { background-color: var(--surface-left-nav); }
24633
+ .bg-surface-active { background-color: var(--surface-active); }
24624
24634
  .text-status-positive { color: var(--status-positive); }
24625
24635
  .text-status-negative { color: var(--status-negative); }
24626
24636
  .text-status-warning { color: var(--status-warning); }