@illuma-ai/codeviz 1.0.7 → 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.cjs +14 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +14 -8
- package/dist/index.js.map +1 -1
- package/dist/ui/theme.d.ts +1 -1
- package/dist/ui/theme.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1372,12 +1372,14 @@ Format: **Draw.io XML** (mxGraphModel). The renderer includes ALL draw.io shape
|
|
|
1372
1372
|
.theme-light {
|
|
1373
1373
|
--surface-primary: #ffffff;
|
|
1374
1374
|
--surface-secondary: #f7f7f8;
|
|
1375
|
-
--surface-tertiary: #
|
|
1375
|
+
--surface-tertiary: #ececec;
|
|
1376
|
+
--surface-left-nav: #ededee;
|
|
1377
|
+
--surface-active: #e3e3e3;
|
|
1376
1378
|
--text-primary: #212121;
|
|
1377
|
-
--text-secondary: #
|
|
1378
|
-
--text-tertiary: #
|
|
1379
|
-
--border-light: #
|
|
1380
|
-
--border-medium: #
|
|
1379
|
+
--text-secondary: #424242;
|
|
1380
|
+
--text-tertiary: #595959;
|
|
1381
|
+
--border-light: #e3e3e3;
|
|
1382
|
+
--border-medium: #cdcdcd;
|
|
1381
1383
|
--accent-cyan: #00C1D5;
|
|
1382
1384
|
--accent-navy: #000033;
|
|
1383
1385
|
--status-positive: #16a34a;
|
|
@@ -1388,11 +1390,13 @@ Format: **Draw.io XML** (mxGraphModel). The renderer includes ALL draw.io shape
|
|
|
1388
1390
|
--surface-primary: #0d0d0d;
|
|
1389
1391
|
--surface-secondary: #212121;
|
|
1390
1392
|
--surface-tertiary: #2f2f2f;
|
|
1393
|
+
--surface-left-nav: #1a1a1b;
|
|
1394
|
+
--surface-active: #595959;
|
|
1391
1395
|
--text-primary: #ececec;
|
|
1392
|
-
--text-secondary: #
|
|
1393
|
-
--text-tertiary: #
|
|
1396
|
+
--text-secondary: #cdcdcd;
|
|
1397
|
+
--text-tertiary: #595959;
|
|
1394
1398
|
--border-light: #3a3a3b;
|
|
1395
|
-
--border-medium: #
|
|
1399
|
+
--border-medium: #424242;
|
|
1396
1400
|
--accent-cyan: #00C1D5;
|
|
1397
1401
|
--accent-navy: #000033;
|
|
1398
1402
|
--status-positive: #22c55e;
|
|
@@ -1413,6 +1417,8 @@ Format: **Draw.io XML** (mxGraphModel). The renderer includes ALL draw.io shape
|
|
|
1413
1417
|
.text-accent-navy { color: var(--accent-navy); }
|
|
1414
1418
|
.bg-accent-cyan { background-color: var(--accent-cyan); }
|
|
1415
1419
|
.bg-accent-navy { background-color: var(--accent-navy); }
|
|
1420
|
+
.bg-surface-left-nav { background-color: var(--surface-left-nav); }
|
|
1421
|
+
.bg-surface-active { background-color: var(--surface-active); }
|
|
1416
1422
|
.text-status-positive { color: var(--status-positive); }
|
|
1417
1423
|
.text-status-negative { color: var(--status-negative); }
|
|
1418
1424
|
.text-status-warning { color: var(--status-warning); }
|