domma-js 0.18.0 → 0.18.2

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/bin/domma-cli.js CHANGED
@@ -84,26 +84,26 @@ async function handleInit() {
84
84
  let projectName = 'my-app';
85
85
  let theme = 'charcoal-dark';
86
86
  let includeThemeSelector = false;
87
- let projectMode = 'mpa'; // Default to multi-page
87
+ let projectMode = 'spa'; // Default to single-page
88
88
 
89
89
  // Determine project mode
90
- if (spaFlag) {
91
- projectMode = 'spa';
92
- } else if (mpaFlag) {
90
+ if (mpaFlag) {
93
91
  projectMode = 'mpa';
92
+ } else if (spaFlag) {
93
+ projectMode = 'spa';
94
94
  } else if (!quickMode) {
95
95
  // Prompt user to choose mode
96
96
  const rl = readline.createInterface({input, output});
97
97
 
98
98
  console.log(`\n Choose project type:`);
99
- console.log(` ❯ Multi-Page Application (MPA) - Traditional multi-page website (default)`);
100
- console.log(` Single Page Application (SPA) - Client-side routing with view switching`);
99
+ console.log(` ❯ Single Page Application (SPA) - Client-side routing with view switching (default)`);
100
+ console.log(` Multi-Page Application (MPA) - Traditional multi-page website`);
101
101
 
102
- const modeAnswer = await rl.question(`\n Enter choice (mpa/spa): `);
102
+ const modeAnswer = await rl.question(`\n Enter choice (spa/mpa): `);
103
103
  const modeInput = modeAnswer.trim().toLowerCase();
104
104
 
105
- if (modeInput === 'spa' || modeInput === 's') {
106
- projectMode = 'spa';
105
+ if (modeInput === 'mpa' || modeInput === 'm') {
106
+ projectMode = 'mpa';
107
107
  }
108
108
 
109
109
  rl.close();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "domma-js",
3
- "version": "0.18.0",
3
+ "version": "0.18.2",
4
4
  "description": "Dynamic Object Manipulation & Modeling API - A complete front-end toolkit.",
5
5
  "main": "public/dist/domma.min.js",
6
6
  "module": "public/dist/domma.esm.js",
@@ -10,7 +10,10 @@
10
10
  },
11
11
  "files": [
12
12
  "bin/",
13
- "templates/",
13
+ "templates/kickstart/",
14
+ "templates/kickstart-spa/",
15
+ "templates/page-template/",
16
+ "templates/view-template/",
14
17
  "public/dist/domma.min.js",
15
18
  "public/dist/domma.esm.js",
16
19
  "public/dist/domma.css",
@@ -36,15 +39,16 @@
36
39
  "serve:3096": "node bin/domma-cli.js serve --port 3096",
37
40
  "dev": "NODE_ENV=development npm run generate:bundles && rollup -c && node scripts/build-info.js && npm run build:metadata && npm run copy:themes && npm run build:css && npm run build:miniapps && live-server public --port=3001 --open=/index.html",
38
41
  "dev:watch": "NODE_ENV=development npm run generate:bundles && rollup -c && node scripts/build-info.js && npm run build:metadata && npm run copy:themes && npm run build:css && npm run build:miniapps && npm run watch:miniapps",
39
- "build": "npm run generate:bundles && rollup -c && node scripts/build-info.js && npm run build:metadata && npm run copy:themes && npm run build:css && npm run build:css-bundles && npm run build:archives && npm run build:miniapps",
42
+ "build": "npm run generate:bundles && rollup -c && node scripts/build-info.js && npm run build:metadata && npm run copy:themes && npm run build:css && npm run build:css-bundles && npm run build:archives && npm run build:kickstart-files && npm run build:miniapps",
40
43
  "build:js": "rollup -c",
41
44
  "build:css": "node scripts/build-css.js",
42
45
  "build:css-bundles": "node scripts/build-css-bundles.js",
43
46
  "build:archives": "node scripts/build-archives.js",
47
+ "build:kickstart-files": "node scripts/build-kickstart-files.js",
44
48
  "build:info": "node scripts/build-info.js",
45
49
  "build:metadata": "node scripts/copy-metadata.js",
46
50
  "copy:themes": "node scripts/copy-theme-css.js",
47
- "build:miniapps": "node scripts/build-miniapp.js && node scripts/copy-miniapps.js",
51
+ "build:miniapps": "node scripts/build-miniapp.js && node scripts/copy-miniapps.js",
48
52
  "build:miniapp:garage": "node scripts/build-miniapp.js garage",
49
53
  "build:miniapp:address": "node scripts/build-miniapp.js address",
50
54
  "watch:miniapps": "node scripts/watch-miniapps.js",
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * Domma Complete CSS Bundle v0.18.0
2
+ * Domma Complete CSS Bundle v0.18.1
3
3
  * Dynamic Object Manipulation & Modeling API
4
4
  * (c) 2026 Darryl Waterhouse & DCBW-IT
5
- * Built: 2026-02-20T13:24:07.777Z
5
+ * Built: 2026-02-25T21:51:20.178Z
6
6
  */
7
7
 
8
8
  /* ============================================
@@ -11,11 +11,11 @@
11
11
  ============================================ */
12
12
 
13
13
  /*!
14
- * Domma Core CSS v0.18.0
14
+ * Domma Core CSS v0.18.1
15
15
  * Dynamic Object Manipulation & Modeling API
16
16
  * (c) 2026 Darryl Waterhouse & DCBW-IT
17
- * Built: 2026-02-20T13:24:07.425Z
18
- * Commit: d0731be
17
+ * Built: 2026-02-25T21:51:19.726Z
18
+ * Commit: 2eb305a
19
19
  */
20
20
 
21
21
  /**
@@ -2566,6 +2566,43 @@ code, pre {
2566
2566
  z-index: 2;
2567
2567
  }
2568
2568
 
2569
+ /* Button Group Sizes */
2570
+ .btn-group-sm > .btn,
2571
+ .btn-group-sm > .btn-group > .btn {
2572
+ padding: var(--dm-space-1) var(--dm-space-2);
2573
+ font-size: var(--dm-font-size-xs);
2574
+ line-height: 1.5;
2575
+ border-radius: 0;
2576
+ }
2577
+
2578
+ .btn-group-sm > .btn:first-child {
2579
+ border-top-left-radius: var(--dm-radius-sm);
2580
+ border-bottom-left-radius: var(--dm-radius-sm);
2581
+ }
2582
+
2583
+ .btn-group-sm > .btn:last-child {
2584
+ border-top-right-radius: var(--dm-radius-sm);
2585
+ border-bottom-right-radius: var(--dm-radius-sm);
2586
+ }
2587
+
2588
+ .btn-group-lg > .btn,
2589
+ .btn-group-lg > .btn-group > .btn {
2590
+ padding: var(--dm-space-3) var(--dm-space-6);
2591
+ font-size: var(--dm-font-size-lg);
2592
+ line-height: 1.5;
2593
+ border-radius: 0;
2594
+ }
2595
+
2596
+ .btn-group-lg > .btn:first-child {
2597
+ border-top-left-radius: var(--dm-radius-lg);
2598
+ border-bottom-left-radius: var(--dm-radius-lg);
2599
+ }
2600
+
2601
+ .btn-group-lg > .btn:last-child {
2602
+ border-top-right-radius: var(--dm-radius-lg);
2603
+ border-bottom-right-radius: var(--dm-radius-lg);
2604
+ }
2605
+
2569
2606
  /* Range Slider */
2570
2607
  .form-range {
2571
2608
  appearance: none;
@@ -4003,12 +4040,18 @@ code, pre {
4003
4040
  }
4004
4041
 
4005
4042
  @keyframes dm-ambient-aurora {
4006
- 0%, 100% {
4007
- background-position: 0% 50%;
4008
- }
4009
- 50% {
4010
- background-position: 100% 50%;
4011
- }
4043
+ 0% { background-position: 0% 50%; }
4044
+ 25% { background-position: 50% 0%; }
4045
+ 50% { background-position: 100% 50%; }
4046
+ 75% { background-position: 50% 100%; }
4047
+ 100% { background-position: 0% 50%; }
4048
+ }
4049
+
4050
+ @keyframes dm-ambient-aurora-2 {
4051
+ 0% { background-position: 100% 0%; }
4052
+ 33% { background-position: 0% 50%; }
4053
+ 66% { background-position: 80% 100%; }
4054
+ 100% { background-position: 100% 0%; }
4012
4055
  }
4013
4056
 
4014
4057
  /* Utility Classes - Rotating Gradients */
@@ -4250,20 +4293,42 @@ code, pre {
4250
4293
  .bg-ambient-aurora::before {
4251
4294
  content: '';
4252
4295
  position: absolute;
4253
- top: 0;
4254
- left: 0;
4255
- right: 0;
4256
- bottom: 0;
4296
+ top: -50%;
4297
+ left: -50%;
4298
+ width: 200%;
4299
+ height: 200%;
4257
4300
  background: linear-gradient(
4258
- 45deg,
4259
- rgba(59, 130, 246, 0.1) 0%,
4260
- rgba(139, 92, 246, 0.08) 25%,
4261
- rgba(236, 72, 153, 0.06) 50%,
4262
- rgba(59, 130, 246, 0.08) 75%,
4263
- rgba(139, 92, 246, 0.1) 100%
4301
+ 120deg,
4302
+ rgba(16, 185, 129, 0.0) 0%,
4303
+ rgba(16, 185, 129, 0.5) 20%,
4304
+ rgba(6, 182, 212, 0.6) 40%,
4305
+ rgba(59, 130, 246, 0.4) 60%,
4306
+ rgba(6, 182, 212, 0.3) 80%,
4307
+ rgba(16, 185, 129, 0.0) 100%
4264
4308
  );
4265
- background-size: 400% 400%;
4266
- animation: dm-ambient-aurora 15s ease infinite;
4309
+ background-size: 200% 200%;
4310
+ animation: dm-ambient-aurora 20s ease infinite;
4311
+ will-change: background-position;
4312
+ }
4313
+
4314
+ .bg-ambient-aurora::after {
4315
+ content: '';
4316
+ position: absolute;
4317
+ top: -50%;
4318
+ left: -50%;
4319
+ width: 200%;
4320
+ height: 200%;
4321
+ background: linear-gradient(
4322
+ 240deg,
4323
+ rgba(139, 92, 246, 0.0) 0%,
4324
+ rgba(139, 92, 246, 0.4) 25%,
4325
+ rgba(236, 72, 153, 0.3) 50%,
4326
+ rgba(109, 40, 217, 0.35) 75%,
4327
+ rgba(139, 92, 246, 0.0) 100%
4328
+ );
4329
+ background-size: 200% 200%;
4330
+ animation: dm-ambient-aurora-2 25s ease infinite;
4331
+ mix-blend-mode: screen;
4267
4332
  will-change: background-position;
4268
4333
  }
4269
4334
 
@@ -4707,11 +4772,11 @@ body.dm-cloaked.dm-ready {
4707
4772
  ============================================ */
4708
4773
 
4709
4774
  /*!
4710
- * Domma Grid CSS v0.18.0
4775
+ * Domma Grid CSS v0.18.1
4711
4776
  * Dynamic Object Manipulation & Modeling API
4712
4777
  * (c) 2026 Darryl Waterhouse & DCBW-IT
4713
- * Built: 2026-02-20T13:24:07.433Z
4714
- * Commit: d0731be
4778
+ * Built: 2026-02-25T21:51:19.735Z
4779
+ * Commit: 2eb305a
4715
4780
  */
4716
4781
 
4717
4782
  /**
@@ -5332,11 +5397,11 @@ body.dm-cloaked.dm-ready {
5332
5397
  ============================================ */
5333
5398
 
5334
5399
  /*!
5335
- * Domma Elements CSS v0.18.0
5400
+ * Domma Elements CSS v0.18.1
5336
5401
  * Dynamic Object Manipulation & Modeling API
5337
5402
  * (c) 2026 Darryl Waterhouse & DCBW-IT
5338
- * Built: 2026-02-20T13:24:07.441Z
5339
- * Commit: d0731be
5403
+ * Built: 2026-02-25T21:51:19.743Z
5404
+ * Commit: 2eb305a
5340
5405
  */
5341
5406
 
5342
5407
  /**
@@ -6725,6 +6790,14 @@ textarea:not([class])::placeholder {
6725
6790
  color: var(--dm-info-dark);
6726
6791
  }
6727
6792
 
6793
+ /* In dark themes, the "-dark" colour variants are designed for light backgrounds.
6794
+ Use the base colour (readable on dark backgrounds) instead. */
6795
+ [data-mode="dark"] .alert-primary { color: var(--dm-primary); }
6796
+ [data-mode="dark"] .alert-success { color: var(--dm-success); }
6797
+ [data-mode="dark"] .alert-danger { color: var(--dm-danger); }
6798
+ [data-mode="dark"] .alert-warning { color: var(--dm-warning-text, var(--dm-warning)); }
6799
+ [data-mode="dark"] .alert-info { color: var(--dm-info); }
6800
+
6728
6801
 
6729
6802
  /* ============================================
6730
6803
  CODE BLOCK
@@ -7123,7 +7196,7 @@ code {
7123
7196
  }
7124
7197
 
7125
7198
  .navbar-dark .navbar-link {
7126
- color: var(--dm-text-disabled);
7199
+ color: var(--dm-gray-400, #adb5bd);
7127
7200
  }
7128
7201
 
7129
7202
  .navbar-dark .navbar-link:hover {
@@ -7420,7 +7493,7 @@ code {
7420
7493
  }
7421
7494
 
7422
7495
  .navbar-dark .navbar-dropdown-item {
7423
- color: var(--dm-text-disabled);
7496
+ color: var(--dm-gray-400, #adb5bd);
7424
7497
  }
7425
7498
 
7426
7499
  .navbar-dark .navbar-dropdown-item:hover {
@@ -11652,16 +11725,16 @@ code {
11652
11725
  /* Dark theme support */
11653
11726
  [data-mode="dark"] .dm-progression-content {
11654
11727
  background: var(--dm-surface);
11655
- border-color: var(--dm-text);
11656
- color: var(--dm-text-inverse);
11728
+ border-color: var(--dm-border);
11729
+ color: var(--dm-text);
11657
11730
  }
11658
11731
 
11659
11732
  [data-mode="dark"] .dm-progression-title {
11660
- color: var(--dm-text-inverse);
11733
+ color: var(--dm-text);
11661
11734
  }
11662
11735
 
11663
11736
  [data-mode="dark"] .dm-progression-description {
11664
- color: var(--dm-text-disabled);
11737
+ color: var(--dm-text-secondary);
11665
11738
  }
11666
11739
 
11667
11740
  [data-mode="dark"] .dm-progression-minimal .dm-progression-content {
@@ -12022,11 +12095,11 @@ code {
12022
12095
  ============================================ */
12023
12096
 
12024
12097
  /*!
12025
- * Domma Themes v0.18.0
12098
+ * Domma Themes v0.18.1
12026
12099
  * Dynamic Object Manipulation & Modeling API
12027
12100
  * (c) 2026 Darryl Waterhouse & DCBW-IT
12028
- * Built: 2026-02-20T13:24:07.403Z
12029
- * Commit: d0731be
12101
+ * Built: 2026-02-25T21:51:19.692Z
12102
+ * Commit: 2eb305a
12030
12103
  */
12031
12104
 
12032
12105
  /**
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * Domma Data-Focused CSS Bundle v0.18.0
2
+ * Domma Data-Focused CSS Bundle v0.18.1
3
3
  * Dynamic Object Manipulation & Modeling API
4
4
  * (c) 2026 Darryl Waterhouse & DCBW-IT
5
- * Built: 2026-02-20T13:24:07.767Z
5
+ * Built: 2026-02-25T21:51:20.169Z
6
6
  */
7
7
 
8
8
  /* ============================================
@@ -230,11 +230,11 @@
230
230
  ============================================ */
231
231
 
232
232
  /*!
233
- * Domma Core CSS v0.18.0
233
+ * Domma Core CSS v0.18.1
234
234
  * Dynamic Object Manipulation & Modeling API
235
235
  * (c) 2026 Darryl Waterhouse & DCBW-IT
236
- * Built: 2026-02-20T13:24:07.425Z
237
- * Commit: d0731be
236
+ * Built: 2026-02-25T21:51:19.726Z
237
+ * Commit: 2eb305a
238
238
  */
239
239
 
240
240
  /**
@@ -2785,6 +2785,43 @@ code, pre {
2785
2785
  z-index: 2;
2786
2786
  }
2787
2787
 
2788
+ /* Button Group Sizes */
2789
+ .btn-group-sm > .btn,
2790
+ .btn-group-sm > .btn-group > .btn {
2791
+ padding: var(--dm-space-1) var(--dm-space-2);
2792
+ font-size: var(--dm-font-size-xs);
2793
+ line-height: 1.5;
2794
+ border-radius: 0;
2795
+ }
2796
+
2797
+ .btn-group-sm > .btn:first-child {
2798
+ border-top-left-radius: var(--dm-radius-sm);
2799
+ border-bottom-left-radius: var(--dm-radius-sm);
2800
+ }
2801
+
2802
+ .btn-group-sm > .btn:last-child {
2803
+ border-top-right-radius: var(--dm-radius-sm);
2804
+ border-bottom-right-radius: var(--dm-radius-sm);
2805
+ }
2806
+
2807
+ .btn-group-lg > .btn,
2808
+ .btn-group-lg > .btn-group > .btn {
2809
+ padding: var(--dm-space-3) var(--dm-space-6);
2810
+ font-size: var(--dm-font-size-lg);
2811
+ line-height: 1.5;
2812
+ border-radius: 0;
2813
+ }
2814
+
2815
+ .btn-group-lg > .btn:first-child {
2816
+ border-top-left-radius: var(--dm-radius-lg);
2817
+ border-bottom-left-radius: var(--dm-radius-lg);
2818
+ }
2819
+
2820
+ .btn-group-lg > .btn:last-child {
2821
+ border-top-right-radius: var(--dm-radius-lg);
2822
+ border-bottom-right-radius: var(--dm-radius-lg);
2823
+ }
2824
+
2788
2825
  /* Range Slider */
2789
2826
  .form-range {
2790
2827
  appearance: none;
@@ -4222,12 +4259,18 @@ code, pre {
4222
4259
  }
4223
4260
 
4224
4261
  @keyframes dm-ambient-aurora {
4225
- 0%, 100% {
4226
- background-position: 0% 50%;
4227
- }
4228
- 50% {
4229
- background-position: 100% 50%;
4230
- }
4262
+ 0% { background-position: 0% 50%; }
4263
+ 25% { background-position: 50% 0%; }
4264
+ 50% { background-position: 100% 50%; }
4265
+ 75% { background-position: 50% 100%; }
4266
+ 100% { background-position: 0% 50%; }
4267
+ }
4268
+
4269
+ @keyframes dm-ambient-aurora-2 {
4270
+ 0% { background-position: 100% 0%; }
4271
+ 33% { background-position: 0% 50%; }
4272
+ 66% { background-position: 80% 100%; }
4273
+ 100% { background-position: 100% 0%; }
4231
4274
  }
4232
4275
 
4233
4276
  /* Utility Classes - Rotating Gradients */
@@ -4469,20 +4512,42 @@ code, pre {
4469
4512
  .bg-ambient-aurora::before {
4470
4513
  content: '';
4471
4514
  position: absolute;
4472
- top: 0;
4473
- left: 0;
4474
- right: 0;
4475
- bottom: 0;
4515
+ top: -50%;
4516
+ left: -50%;
4517
+ width: 200%;
4518
+ height: 200%;
4476
4519
  background: linear-gradient(
4477
- 45deg,
4478
- rgba(59, 130, 246, 0.1) 0%,
4479
- rgba(139, 92, 246, 0.08) 25%,
4480
- rgba(236, 72, 153, 0.06) 50%,
4481
- rgba(59, 130, 246, 0.08) 75%,
4482
- rgba(139, 92, 246, 0.1) 100%
4520
+ 120deg,
4521
+ rgba(16, 185, 129, 0.0) 0%,
4522
+ rgba(16, 185, 129, 0.5) 20%,
4523
+ rgba(6, 182, 212, 0.6) 40%,
4524
+ rgba(59, 130, 246, 0.4) 60%,
4525
+ rgba(6, 182, 212, 0.3) 80%,
4526
+ rgba(16, 185, 129, 0.0) 100%
4483
4527
  );
4484
- background-size: 400% 400%;
4485
- animation: dm-ambient-aurora 15s ease infinite;
4528
+ background-size: 200% 200%;
4529
+ animation: dm-ambient-aurora 20s ease infinite;
4530
+ will-change: background-position;
4531
+ }
4532
+
4533
+ .bg-ambient-aurora::after {
4534
+ content: '';
4535
+ position: absolute;
4536
+ top: -50%;
4537
+ left: -50%;
4538
+ width: 200%;
4539
+ height: 200%;
4540
+ background: linear-gradient(
4541
+ 240deg,
4542
+ rgba(139, 92, 246, 0.0) 0%,
4543
+ rgba(139, 92, 246, 0.4) 25%,
4544
+ rgba(236, 72, 153, 0.3) 50%,
4545
+ rgba(109, 40, 217, 0.35) 75%,
4546
+ rgba(139, 92, 246, 0.0) 100%
4547
+ );
4548
+ background-size: 200% 200%;
4549
+ animation: dm-ambient-aurora-2 25s ease infinite;
4550
+ mix-blend-mode: screen;
4486
4551
  will-change: background-position;
4487
4552
  }
4488
4553
 
@@ -4926,11 +4991,11 @@ body.dm-cloaked.dm-ready {
4926
4991
  ============================================ */
4927
4992
 
4928
4993
  /*!
4929
- * Domma Grid CSS v0.18.0
4994
+ * Domma Grid CSS v0.18.1
4930
4995
  * Dynamic Object Manipulation & Modeling API
4931
4996
  * (c) 2026 Darryl Waterhouse & DCBW-IT
4932
- * Built: 2026-02-20T13:24:07.433Z
4933
- * Commit: d0731be
4997
+ * Built: 2026-02-25T21:51:19.735Z
4998
+ * Commit: 2eb305a
4934
4999
  */
4935
5000
 
4936
5001
  /**
@@ -5551,11 +5616,11 @@ body.dm-cloaked.dm-ready {
5551
5616
  ============================================ */
5552
5617
 
5553
5618
  /*!
5554
- * Domma Elements CSS v0.18.0
5619
+ * Domma Elements CSS v0.18.1
5555
5620
  * Dynamic Object Manipulation & Modeling API
5556
5621
  * (c) 2026 Darryl Waterhouse & DCBW-IT
5557
- * Built: 2026-02-20T13:24:07.441Z
5558
- * Commit: d0731be
5622
+ * Built: 2026-02-25T21:51:19.743Z
5623
+ * Commit: 2eb305a
5559
5624
  */
5560
5625
 
5561
5626
  /**
@@ -6944,6 +7009,14 @@ textarea:not([class])::placeholder {
6944
7009
  color: var(--dm-info-dark);
6945
7010
  }
6946
7011
 
7012
+ /* In dark themes, the "-dark" colour variants are designed for light backgrounds.
7013
+ Use the base colour (readable on dark backgrounds) instead. */
7014
+ [data-mode="dark"] .alert-primary { color: var(--dm-primary); }
7015
+ [data-mode="dark"] .alert-success { color: var(--dm-success); }
7016
+ [data-mode="dark"] .alert-danger { color: var(--dm-danger); }
7017
+ [data-mode="dark"] .alert-warning { color: var(--dm-warning-text, var(--dm-warning)); }
7018
+ [data-mode="dark"] .alert-info { color: var(--dm-info); }
7019
+
6947
7020
 
6948
7021
  /* ============================================
6949
7022
  CODE BLOCK
@@ -7342,7 +7415,7 @@ code {
7342
7415
  }
7343
7416
 
7344
7417
  .navbar-dark .navbar-link {
7345
- color: var(--dm-text-disabled);
7418
+ color: var(--dm-gray-400, #adb5bd);
7346
7419
  }
7347
7420
 
7348
7421
  .navbar-dark .navbar-link:hover {
@@ -7639,7 +7712,7 @@ code {
7639
7712
  }
7640
7713
 
7641
7714
  .navbar-dark .navbar-dropdown-item {
7642
- color: var(--dm-text-disabled);
7715
+ color: var(--dm-gray-400, #adb5bd);
7643
7716
  }
7644
7717
 
7645
7718
  .navbar-dark .navbar-dropdown-item:hover {
@@ -11871,16 +11944,16 @@ code {
11871
11944
  /* Dark theme support */
11872
11945
  [data-mode="dark"] .dm-progression-content {
11873
11946
  background: var(--dm-surface);
11874
- border-color: var(--dm-text);
11875
- color: var(--dm-text-inverse);
11947
+ border-color: var(--dm-border);
11948
+ color: var(--dm-text);
11876
11949
  }
11877
11950
 
11878
11951
  [data-mode="dark"] .dm-progression-title {
11879
- color: var(--dm-text-inverse);
11952
+ color: var(--dm-text);
11880
11953
  }
11881
11954
 
11882
11955
  [data-mode="dark"] .dm-progression-description {
11883
- color: var(--dm-text-disabled);
11956
+ color: var(--dm-text-secondary);
11884
11957
  }
11885
11958
 
11886
11959
  [data-mode="dark"] .dm-progression-minimal .dm-progression-content {
@@ -12241,11 +12314,11 @@ code {
12241
12314
  ============================================ */
12242
12315
 
12243
12316
  /*!
12244
- * Domma Themes v0.18.0
12317
+ * Domma Themes v0.18.1
12245
12318
  * Dynamic Object Manipulation & Modeling API
12246
12319
  * (c) 2026 Darryl Waterhouse & DCBW-IT
12247
- * Built: 2026-02-20T13:24:07.403Z
12248
- * Commit: d0731be
12320
+ * Built: 2026-02-25T21:51:19.692Z
12321
+ * Commit: 2eb305a
12249
12322
  */
12250
12323
 
12251
12324
  /**