retold-remote 0.0.7 → 0.0.9

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.
@@ -21,8 +21,6 @@ html, body
21
21
  line-height: 1.5;
22
22
  -webkit-font-smoothing: antialiased;
23
23
  -moz-osx-font-smoothing: grayscale;
24
- /* Safe area insets for notched devices */
25
- padding-bottom: env(safe-area-inset-bottom);
26
24
  }
27
25
 
28
26
  /* Scrollbar styling */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "retold-remote",
3
- "version": "0.0.7",
3
+ "version": "0.0.9",
4
4
  "description": "Retold Remote - NAS media browser with gallery views and keyboard navigation",
5
5
  "main": "source/Pict-RetoldRemote-Bundle.js",
6
6
  "bin": {
@@ -759,6 +759,58 @@ class RetoldRemoteThemeProvider extends libPictProvider
759
759
  PdfText: '#CC4422'
760
760
  }
761
761
  });
762
+
763
+ // ===================================================================
764
+ // DEBUG THEME (unique color per container for layout debugging)
765
+ // ===================================================================
766
+
767
+ tmpSelf._addTheme('mobile-debug',
768
+ {
769
+ Name: 'Mobile Container Debug',
770
+ Category: 'Debug',
771
+ Description: 'Unique color per container for layout debugging',
772
+ Variables:
773
+ {
774
+ '--retold-bg-primary': '#FF0000',
775
+ '--retold-bg-secondary': '#00CCCC',
776
+ '--retold-bg-tertiary': '#00AA00',
777
+ '--retold-bg-panel': '#FFAA00',
778
+ '--retold-bg-viewer': '#333333',
779
+ '--retold-bg-hover': 'rgba(255, 255, 255, 0.2)',
780
+ '--retold-bg-selected': 'rgba(255, 255, 255, 0.3)',
781
+ '--retold-bg-thumb': '#AA00AA',
782
+ '--retold-text-primary': '#FFFFFF',
783
+ '--retold-text-secondary': '#EEEEEE',
784
+ '--retold-text-muted': '#CCCCCC',
785
+ '--retold-text-dim': '#AAAAAA',
786
+ '--retold-text-placeholder': '#888888',
787
+ '--retold-accent': '#FFFF00',
788
+ '--retold-accent-hover': '#FFFF88',
789
+ '--retold-border': '#FFFFFF',
790
+ '--retold-border-light': '#CCCCCC',
791
+ '--retold-danger': '#FF0000',
792
+ '--retold-danger-muted': '#CC4444',
793
+ '--retold-scrollbar': '#888888',
794
+ '--retold-scrollbar-hover': '#AAAAAA',
795
+ '--retold-selection-bg': 'rgba(255, 255, 0, 0.3)',
796
+ '--retold-focus-outline': '#FFFF00',
797
+ '--retold-font-family': "system-ui, -apple-system, sans-serif",
798
+ '--retold-font-mono': "'SF Mono', 'Consolas', monospace"
799
+ },
800
+ IconColors:
801
+ {
802
+ Primary: '#FFFFFF',
803
+ Accent: '#FFFF00',
804
+ Muted: '#CCCCCC',
805
+ Light: '#333333',
806
+ WarmBeige: '#FFAA00',
807
+ TealTint: '#00CCCC',
808
+ Lavender: '#AA00AA',
809
+ AmberTint: '#FFAA00',
810
+ PdfFill: '#FF4444',
811
+ PdfText: '#FFFFFF'
812
+ }
813
+ });
762
814
  }
763
815
 
764
816
  /**
@@ -246,6 +246,7 @@ const _ViewConfiguration =
246
246
  #RetoldRemote-Gallery-Container
247
247
  {
248
248
  padding: 12px;
249
+ padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
249
250
  min-height: 100%;
250
251
  }
251
252
  #RetoldRemote-Viewer-Container
@@ -264,6 +265,57 @@ const _ViewConfiguration =
264
265
  display: none;
265
266
  }
266
267
 
268
+ /* ---- Right-side Collections Panel ---- */
269
+ .retold-remote-collections-wrap
270
+ {
271
+ display: flex;
272
+ flex-shrink: 0;
273
+ position: relative;
274
+ transition: width 0.2s ease;
275
+ border-left: 1px solid var(--retold-border);
276
+ }
277
+ .retold-remote-collections-wrap.collapsed
278
+ {
279
+ width: 0 !important;
280
+ border-left: none;
281
+ }
282
+ .retold-remote-collections-wrap.collapsed .retold-remote-collections-inner
283
+ {
284
+ visibility: hidden;
285
+ }
286
+ .retold-remote-collections-wrap.collapsed .retold-remote-collections-resize-handle
287
+ {
288
+ display: none;
289
+ }
290
+ .retold-remote-collections-inner
291
+ {
292
+ display: flex;
293
+ flex-direction: column;
294
+ flex: 1;
295
+ min-width: 0;
296
+ min-height: 0;
297
+ overflow: hidden;
298
+ background: var(--retold-bg-primary);
299
+ }
300
+ .retold-remote-collections-resize-handle
301
+ {
302
+ position: absolute;
303
+ left: 0;
304
+ top: 0;
305
+ bottom: 0;
306
+ width: 5px;
307
+ cursor: col-resize;
308
+ z-index: 10;
309
+ display: flex;
310
+ align-items: center;
311
+ justify-content: center;
312
+ }
313
+ .retold-remote-collections-resize-handle:hover
314
+ {
315
+ background: var(--retold-accent);
316
+ opacity: 0.3;
317
+ }
318
+
267
319
  /* ============================================================
268
320
  MOBILE: Sidebar becomes a top drawer
269
321
  ============================================================ */
@@ -335,62 +387,19 @@ const _ViewConfiguration =
335
387
  min-height: 0;
336
388
  }
337
389
 
338
- /* Collections panel: hide in mobile */
339
- .retold-remote-collections-wrap
390
+ /* Gallery: don't force min-height on small screens */
391
+ #RetoldRemote-Gallery-Container
340
392
  {
341
- display: none;
393
+ min-height: auto;
342
394
  }
343
- }
344
395
 
345
- /* ---- Right-side Collections Panel ---- */
346
- .retold-remote-collections-wrap
347
- {
348
- display: flex;
349
- flex-shrink: 0;
350
- position: relative;
351
- transition: width 0.2s ease;
352
- border-left: 1px solid var(--retold-border);
353
- }
354
- .retold-remote-collections-wrap.collapsed
355
- {
356
- width: 0 !important;
357
- border-left: none;
358
- }
359
- .retold-remote-collections-wrap.collapsed .retold-remote-collections-inner
360
- {
361
- visibility: hidden;
362
- }
363
- .retold-remote-collections-wrap.collapsed .retold-remote-collections-resize-handle
364
- {
365
- display: none;
366
- }
367
- .retold-remote-collections-inner
368
- {
369
- display: flex;
370
- flex-direction: column;
371
- flex: 1;
372
- min-width: 0;
373
- min-height: 0;
374
- overflow: hidden;
375
- background: var(--retold-bg-primary);
376
- }
377
- .retold-remote-collections-resize-handle
378
- {
379
- position: absolute;
380
- left: 0;
381
- top: 0;
382
- bottom: 0;
383
- width: 5px;
384
- cursor: col-resize;
385
- z-index: 10;
386
- display: flex;
387
- align-items: center;
388
- justify-content: center;
389
- }
390
- .retold-remote-collections-resize-handle:hover
391
- {
392
- background: var(--retold-accent);
393
- opacity: 0.3;
396
+ /* Collections panel: fully hidden on mobile */
397
+ .retold-remote-collections-wrap,
398
+ .retold-remote-collections-wrap.collapsed
399
+ {
400
+ display: none !important;
401
+ height: 0 !important;
402
+ }
394
403
  }
395
404
  `,
396
405
 
@@ -82,7 +82,7 @@ const _ViewConfiguration =
82
82
  display: flex;
83
83
  align-items: center;
84
84
  justify-content: center;
85
- overflow: visible;
85
+ overflow: hidden;
86
86
  min-width: 0;
87
87
  }
88
88
  .retold-remote-topbar-location-inner
@@ -217,9 +217,13 @@ const _ViewConfiguration =
217
217
  }
218
218
  .retold-remote-topbar-info
219
219
  {
220
- flex-shrink: 0;
220
+ flex-shrink: 1;
221
+ min-width: 0;
221
222
  font-size: 0.75rem;
222
223
  color: var(--retold-text-dim);
224
+ overflow: hidden;
225
+ text-overflow: ellipsis;
226
+ white-space: nowrap;
223
227
  }
224
228
  .retold-remote-topbar-actions
225
229
  {
@@ -374,6 +378,18 @@ const _ViewConfiguration =
374
378
  font-weight: 700;
375
379
  text-align: center;
376
380
  }
381
+ @media (max-width: 600px)
382
+ {
383
+ .retold-remote-topbar
384
+ {
385
+ padding: 0 8px;
386
+ gap: 6px;
387
+ }
388
+ .retold-remote-topbar-actions
389
+ {
390
+ gap: 4px;
391
+ }
392
+ }
377
393
  `,
378
394
 
379
395
  Templates:
@@ -387,8 +403,8 @@ const _ViewConfiguration =
387
403
  <div class="retold-remote-topbar-location" id="RetoldRemote-TopBar-Location"></div>
388
404
  <div class="retold-remote-topbar-info" id="RetoldRemote-TopBar-Info"></div>
389
405
  <div class="retold-remote-topbar-actions">
390
- <button class="retold-remote-topbar-aisort-btn" id="RetoldRemote-TopBar-AISortBtn" onclick="pict.views['ContentEditor-TopBar'].triggerAISort()" title="AI Sort (generate sort plan for current folder)" style="display:none;">AI Sort</button>
391
- <button class="retold-remote-topbar-btn retold-remote-topbar-addcoll-btn" id="RetoldRemote-TopBar-AddToCollectionBtn" onclick="pict.views['ContentEditor-TopBar'].addToCollection(event)" title="Add to collection">+&#9733;</button>
406
+ <button class="retold-remote-topbar-aisort-btn" id="RetoldRemote-TopBar-AISortBtn" onclick="pict.views['ContentEditor-TopBar'].triggerAISort()" title="AI Sort (generate sort plan for current folder)" style="display:none;">Ai</button>
407
+ <button class="retold-remote-topbar-btn retold-remote-topbar-addcoll-btn" id="RetoldRemote-TopBar-AddToCollectionBtn" onclick="pict.views['ContentEditor-TopBar'].addToCollection(event)" title="Add to collection">&#9733;</button>
392
408
  <button class="retold-remote-topbar-sidebar-toggle retold-remote-topbar-collections-btn" id="RetoldRemote-TopBar-CollectionsBtn" onclick="pict.views['ContentEditor-TopBar'].toggleCollections()" title="Toggle Collections panel (b)">&#9733;</button>
393
409
  <button class="retold-remote-topbar-filter-btn" id="RetoldRemote-TopBar-FilterBtn" onclick="pict.views['ContentEditor-TopBar'].toggleFilterBar()" title="Toggle filter bar (/)">&#9698;</button>
394
410
  </div>
@@ -794,7 +810,7 @@ class RetoldRemoteTopBarView extends libPictView
794
810
  if (tmpBtn)
795
811
  {
796
812
  tmpBtn.classList.add('generating');
797
- tmpBtn.textContent = 'Sorting...';
813
+ tmpBtn.textContent = '...';
798
814
  }
799
815
 
800
816
  tmpAISortManager.generateSortPlan(tmpCurrentPath,
@@ -804,7 +820,7 @@ class RetoldRemoteTopBarView extends libPictView
804
820
  if (tmpBtn)
805
821
  {
806
822
  tmpBtn.classList.remove('generating');
807
- tmpBtn.textContent = 'AI Sort';
823
+ tmpBtn.textContent = 'Ai';
808
824
  }
809
825
  });
810
826
  }
@@ -21,8 +21,6 @@ html, body
21
21
  line-height: 1.5;
22
22
  -webkit-font-smoothing: antialiased;
23
23
  -moz-osx-font-smoothing: grayscale;
24
- /* Safe area insets for notched devices */
25
- padding-bottom: env(safe-area-inset-bottom);
26
24
  }
27
25
 
28
26
  /* Scrollbar styling */
@@ -9956,7 +9956,10 @@ return this.getIcon('file',tmpSize);}/**
9956
9956
  tmpSelf._addTheme('daylight',{Name:'Daylight',Category:'Grey',Description:'Bright white, dark text',Variables:{'--retold-bg-primary':'#FFFFFF','--retold-bg-secondary':'#F0F0F0','--retold-bg-tertiary':'#E8E8E8','--retold-bg-panel':'#F5F5F5','--retold-bg-viewer':'#FAFAFA','--retold-bg-hover':'#E0E0E0','--retold-bg-selected':'#C8C8C8','--retold-bg-thumb':'#F0F0F0','--retold-text-primary':'#1A1A1A','--retold-text-secondary':'#333333','--retold-text-muted':'#666666','--retold-text-dim':'#888888','--retold-text-placeholder':'#AAAAAA','--retold-accent':'#444444','--retold-accent-hover':'#222222','--retold-border':'#D0D0D0','--retold-border-light':'#E0E0E0','--retold-danger':'#CC0000','--retold-danger-muted':'#884444','--retold-scrollbar':'#C0C0C0','--retold-scrollbar-hover':'#A0A0A0','--retold-selection-bg':'rgba(68, 68, 68, 0.2)','--retold-focus-outline':'#444444','--retold-font-family':"'Segoe UI', system-ui, -apple-system, sans-serif",'--retold-font-mono':"'SF Mono', 'Fira Code', 'Consolas', monospace"},IconColors:{Primary:'#333333',Accent:'#444444',Muted:'#888888',Light:'#E8E8E8',WarmBeige:'#F0F0F0',TealTint:'#E0E0E0',Lavender:'#EBEBEB',AmberTint:'#F0EDE8',PdfFill:'#F0E0E0',PdfText:'#CC0000'}});tmpSelf._addTheme('afternoon',{Name:'Afternoon',Category:'Grey',Description:'Warm light grey, softer contrast',Variables:{'--retold-bg-primary':'#E8E4E0','--retold-bg-secondary':'#DAD6D2','--retold-bg-tertiary':'#D0CCC8','--retold-bg-panel':'#DDD9D5','--retold-bg-viewer':'#F0ECE8','--retold-bg-hover':'#CCC8C4','--retold-bg-selected':'#B8B4B0','--retold-bg-thumb':'#DAD6D2','--retold-text-primary':'#2A2A2A','--retold-text-secondary':'#404040','--retold-text-muted':'#707070','--retold-text-dim':'#909090','--retold-text-placeholder':'#B0B0B0','--retold-accent':'#555555','--retold-accent-hover':'#333333','--retold-border':'#C0BCB8','--retold-border-light':'#D0CCC8','--retold-danger':'#AA3333','--retold-danger-muted':'#886655','--retold-scrollbar':'#B8B4B0','--retold-scrollbar-hover':'#A0A09C','--retold-selection-bg':'rgba(85, 85, 85, 0.2)','--retold-focus-outline':'#555555','--retold-font-family':"Georgia, 'Times New Roman', serif",'--retold-font-mono':"'Courier New', Courier, monospace"},IconColors:{Primary:'#404040',Accent:'#555555',Muted:'#909090',Light:'#D0CCC8',WarmBeige:'#DAD6D2',TealTint:'#CCC8C4',Lavender:'#D2D0CE',AmberTint:'#D8D2C8',PdfFill:'#D8C8C0',PdfText:'#AA3333'}});tmpSelf._addTheme('evening',{Name:'Evening',Category:'Grey',Description:'Medium grey, transitional',Variables:{'--retold-bg-primary':'#484848','--retold-bg-secondary':'#3C3C3C','--retold-bg-tertiary':'#424242','--retold-bg-panel':'#454545','--retold-bg-viewer':'#363636','--retold-bg-hover':'#525252','--retold-bg-selected':'#606060','--retold-bg-thumb':'#3C3C3C','--retold-text-primary':'#E0E0E0','--retold-text-secondary':'#D0D0D0','--retold-text-muted':'#A0A0A0','--retold-text-dim':'#888888','--retold-text-placeholder':'#707070','--retold-accent':'#C0C0C0','--retold-accent-hover':'#E0E0E0','--retold-border':'#585858','--retold-border-light':'#606060','--retold-danger':'#FF6666','--retold-danger-muted':'#AA6666','--retold-scrollbar':'#585858','--retold-scrollbar-hover':'#686868','--retold-selection-bg':'rgba(192, 192, 192, 0.25)','--retold-focus-outline':'#C0C0C0','--retold-font-family':"system-ui, -apple-system, sans-serif",'--retold-font-mono':"'SF Mono', 'Fira Code', 'Consolas', monospace"},IconColors:{Primary:'#D0D0D0',Accent:'#C0C0C0',Muted:'#888888',Light:'#424242',WarmBeige:'#484848',TealTint:'#3E3E3E',Lavender:'#444444',AmberTint:'#4A4640',PdfFill:'#4A3C3C',PdfText:'#FF6666'}});tmpSelf._addTheme('twilight',{Name:'Twilight',Category:'Grey',Description:'Dark grey, low light (default)',Variables:{'--retold-bg-primary':'#1E1E1E','--retold-bg-secondary':'#181818','--retold-bg-tertiary':'#252525','--retold-bg-panel':'#202020','--retold-bg-viewer':'#141414','--retold-bg-hover':'#2E2E2E','--retold-bg-selected':'#404040','--retold-bg-thumb':'#181818','--retold-text-primary':'#E0E0E0','--retold-text-secondary':'#C8C8C8','--retold-text-muted':'#909090','--retold-text-dim':'#707070','--retold-text-placeholder':'#585858','--retold-accent':'#A0A0A0','--retold-accent-hover':'#C0C0C0','--retold-border':'#333333','--retold-border-light':'#404040','--retold-danger':'#FF6666','--retold-danger-muted':'#AA6666','--retold-scrollbar':'#404040','--retold-scrollbar-hover':'#505050','--retold-selection-bg':'rgba(160, 160, 160, 0.25)','--retold-focus-outline':'#A0A0A0','--retold-font-family':"system-ui, -apple-system, sans-serif",'--retold-font-mono':"'SF Mono', 'Fira Code', 'Consolas', monospace"},IconColors:{Primary:'#C8C8C8',Accent:'#A0A0A0',Muted:'#707070',Light:'#252525',WarmBeige:'#2A2A2A',TealTint:'#222222',Lavender:'#282828',AmberTint:'#2E2A24',PdfFill:'#2E2224',PdfText:'#E06060'}});tmpSelf._addTheme('night',{Name:'Night',Category:'Grey',Description:'Near-black, minimal contrast',Variables:{'--retold-bg-primary':'#0A0A0A','--retold-bg-secondary':'#060606','--retold-bg-tertiary':'#0E0E0E','--retold-bg-panel':'#0C0C0C','--retold-bg-viewer':'#040404','--retold-bg-hover':'#161616','--retold-bg-selected':'#252525','--retold-bg-thumb':'#060606','--retold-text-primary':'#888888','--retold-text-secondary':'#707070','--retold-text-muted':'#555555','--retold-text-dim':'#444444','--retold-text-placeholder':'#333333','--retold-accent':'#666666','--retold-accent-hover':'#808080','--retold-border':'#1A1A1A','--retold-border-light':'#222222','--retold-danger':'#AA4444','--retold-danger-muted':'#663333','--retold-scrollbar':'#1A1A1A','--retold-scrollbar-hover':'#2A2A2A','--retold-selection-bg':'rgba(102, 102, 102, 0.2)','--retold-focus-outline':'#666666','--retold-font-family':"system-ui, -apple-system, sans-serif",'--retold-font-mono':"'SF Mono', 'Fira Code', 'Consolas', monospace"},IconColors:{Primary:'#707070',Accent:'#666666',Muted:'#444444',Light:'#0E0E0E',WarmBeige:'#121212',TealTint:'#0C0C0C',Lavender:'#101010',AmberTint:'#141210',PdfFill:'#141010',PdfText:'#AA4444'}});// ===================================================================
9957
9957
  // FUN THEMES
9958
9958
  // ===================================================================
9959
- tmpSelf._addTheme('neo-tokyo',{Name:'Neo-Tokyo',Category:'Fun',Description:'Neon pink on dark navy',Variables:{'--retold-bg-primary':'#0D0D2B','--retold-bg-secondary':'#080820','--retold-bg-tertiary':'#121235','--retold-bg-panel':'#0F0F28','--retold-bg-viewer':'#060615','--retold-bg-hover':'#1A1A42','--retold-bg-selected':'#2A1845','--retold-bg-thumb':'#080820','--retold-text-primary':'#E8E0F0','--retold-text-secondary':'#D0C8E0','--retold-text-muted':'#9088A8','--retold-text-dim':'#6860A0','--retold-text-placeholder':'#504888','--retold-accent':'#FF2D8A','--retold-accent-hover':'#FF5AA0','--retold-border':'#2A2050','--retold-border-light':'#382868','--retold-danger':'#FF4466','--retold-danger-muted':'#AA3355','--retold-scrollbar':'#2A2050','--retold-scrollbar-hover':'#3A3068','--retold-selection-bg':'rgba(255, 45, 138, 0.25)','--retold-focus-outline':'#FF2D8A','--retold-font-family':"'Courier New', monospace",'--retold-font-mono':"'Courier New', monospace"},IconColors:{Primary:'#D0C8E0',Accent:'#FF2D8A',Muted:'#6860A0',Light:'#121235',WarmBeige:'#141438',TealTint:'#100E30',Lavender:'#141232',AmberTint:'#1A1228',PdfFill:'#1A1028',PdfText:'#FF4466'}});tmpSelf._addTheme('cyberpunk',{Name:'Cyberpunk',Category:'Fun',Description:'Electric green on black',Variables:{'--retold-bg-primary':'#0A0E0A','--retold-bg-secondary':'#060806','--retold-bg-tertiary':'#0E120E','--retold-bg-panel':'#0C100C','--retold-bg-viewer':'#040604','--retold-bg-hover':'#142014','--retold-bg-selected':'#1A3A1A','--retold-bg-thumb':'#060806','--retold-text-primary':'#C8FFC8','--retold-text-secondary':'#A0D8A0','--retold-text-muted':'#608860','--retold-text-dim':'#406040','--retold-text-placeholder':'#305030','--retold-accent':'#00FF41','--retold-accent-hover':'#44FF77','--retold-border':'#1A2A1A','--retold-border-light':'#224022','--retold-danger':'#FF3333','--retold-danger-muted':'#AA2222','--retold-scrollbar':'#1A2A1A','--retold-scrollbar-hover':'#2A4A2A','--retold-selection-bg':'rgba(0, 255, 65, 0.2)','--retold-focus-outline':'#00FF41','--retold-font-family':"'Lucida Console', 'Courier New', monospace",'--retold-font-mono':"'Lucida Console', 'Courier New', monospace"},IconColors:{Primary:'#A0D8A0',Accent:'#00FF41',Muted:'#406040',Light:'#0E120E',WarmBeige:'#101610',TealTint:'#0C140C',Lavender:'#0E120E',AmberTint:'#141810',PdfFill:'#181010',PdfText:'#FF3333'}});tmpSelf._addTheme('hotdog',{Name:'Hotdog',Category:'Fun',Description:'Red and mustard yellow, garish',Variables:{'--retold-bg-primary':'#8B0000','--retold-bg-secondary':'#6B0000','--retold-bg-tertiary':'#7B0000','--retold-bg-panel':'#750000','--retold-bg-viewer':'#550000','--retold-bg-hover':'#AA1111','--retold-bg-selected':'#BB3300','--retold-bg-thumb':'#6B0000','--retold-text-primary':'#FFD700','--retold-text-secondary':'#FFC000','--retold-text-muted':'#CC9900','--retold-text-dim':'#AA7700','--retold-text-placeholder':'#886600','--retold-accent':'#FFD700','--retold-accent-hover':'#FFEE44','--retold-border':'#AA2222','--retold-border-light':'#BB3333','--retold-danger':'#FFFF00','--retold-danger-muted':'#CCCC00','--retold-scrollbar':'#AA2222','--retold-scrollbar-hover':'#CC3333','--retold-selection-bg':'rgba(255, 215, 0, 0.3)','--retold-focus-outline':'#FFD700','--retold-font-family':"Impact, 'Arial Black', sans-serif",'--retold-font-mono':"'Courier New', monospace"},IconColors:{Primary:'#FFC000',Accent:'#FFD700',Muted:'#AA7700',Light:'#7B0000',WarmBeige:'#800000',TealTint:'#6B0000',Lavender:'#780000',AmberTint:'#7A1000',PdfFill:'#6B0000',PdfText:'#FFFF00'}});tmpSelf._addTheme('1970s-console',{Name:'1970s Console',Category:'Fun',Description:'Amber phosphor on brown-black',Variables:{'--retold-bg-primary':'#1A1000','--retold-bg-secondary':'#140C00','--retold-bg-tertiary':'#1E1400','--retold-bg-panel':'#1C1200','--retold-bg-viewer':'#100A00','--retold-bg-hover':'#2A1C00','--retold-bg-selected':'#3A2800','--retold-bg-thumb':'#140C00','--retold-text-primary':'#FFAA00','--retold-text-secondary':'#DD8800','--retold-text-muted':'#AA6600','--retold-text-dim':'#884400','--retold-text-placeholder':'#663300','--retold-accent':'#FFCC00','--retold-accent-hover':'#FFDD44','--retold-border':'#2A1800','--retold-border-light':'#3A2200','--retold-danger':'#FF4400','--retold-danger-muted':'#AA3300','--retold-scrollbar':'#2A1800','--retold-scrollbar-hover':'#3A2800','--retold-selection-bg':'rgba(255, 204, 0, 0.2)','--retold-focus-outline':'#FFCC00','--retold-font-family':"'Courier New', 'Lucida Console', monospace",'--retold-font-mono':"'Courier New', 'Lucida Console', monospace"},IconColors:{Primary:'#DD8800',Accent:'#FFCC00',Muted:'#884400',Light:'#1E1400',WarmBeige:'#201800',TealTint:'#1A1000',Lavender:'#1C1200',AmberTint:'#221800',PdfFill:'#201000',PdfText:'#FF4400'}});tmpSelf._addTheme('1980s-console',{Name:'1980s Console',Category:'Fun',Description:'Green phosphor on black',Variables:{'--retold-bg-primary':'#001200','--retold-bg-secondary':'#000E00','--retold-bg-tertiary':'#001600','--retold-bg-panel':'#001400','--retold-bg-viewer':'#000A00','--retold-bg-hover':'#002200','--retold-bg-selected':'#003800','--retold-bg-thumb':'#000E00','--retold-text-primary':'#00FF00','--retold-text-secondary':'#00CC00','--retold-text-muted':'#009900','--retold-text-dim':'#006600','--retold-text-placeholder':'#004400','--retold-accent':'#00FF66','--retold-accent-hover':'#44FF88','--retold-border':'#002A00','--retold-border-light':'#003A00','--retold-danger':'#FF0000','--retold-danger-muted':'#AA0000','--retold-scrollbar':'#002A00','--retold-scrollbar-hover':'#004400','--retold-selection-bg':'rgba(0, 255, 102, 0.2)','--retold-focus-outline':'#00FF66','--retold-font-family':"'Courier New', monospace",'--retold-font-mono':"'Courier New', monospace"},IconColors:{Primary:'#00CC00',Accent:'#00FF66',Muted:'#006600',Light:'#001600',WarmBeige:'#001A00',TealTint:'#001200',Lavender:'#001400',AmberTint:'#001800',PdfFill:'#140000',PdfText:'#FF0000'}});tmpSelf._addTheme('1990s-website',{Name:'1990s Web Site',Category:'Fun',Description:'Blue links on grey, beveled',Variables:{'--retold-bg-primary':'#C0C0C0','--retold-bg-secondary':'#B0B0B0','--retold-bg-tertiary':'#A8A8A8','--retold-bg-panel':'#B8B8B8','--retold-bg-viewer':'#D0D0D0','--retold-bg-hover':'#B8B8D0','--retold-bg-selected':'#000080','--retold-bg-thumb':'#B0B0B0','--retold-text-primary':'#000000','--retold-text-secondary':'#000080','--retold-text-muted':'#404040','--retold-text-dim':'#606060','--retold-text-placeholder':'#808080','--retold-accent':'#0000FF','--retold-accent-hover':'#0000CC','--retold-border':'#808080','--retold-border-light':'#A0A0A0','--retold-danger':'#FF0000','--retold-danger-muted':'#990000','--retold-scrollbar':'#808080','--retold-scrollbar-hover':'#606060','--retold-selection-bg':'rgba(0, 0, 128, 0.3)','--retold-focus-outline':'#0000FF','--retold-font-family':"'Times New Roman', Times, serif",'--retold-font-mono':"'Courier New', Courier, monospace"},IconColors:{Primary:'#000080',Accent:'#0000FF',Muted:'#606060',Light:'#A8A8A8',WarmBeige:'#B0B0B0',TealTint:'#A0A0A0',Lavender:'#ABABD0',AmberTint:'#B8B0A0',PdfFill:'#C0A0A0',PdfText:'#FF0000'}});tmpSelf._addTheme('early-2000s',{Name:'Early 2000s Web',Category:'Fun',Description:'Teal and silver, Web 2.0',Variables:{'--retold-bg-primary':'#E8F4F8','--retold-bg-secondary':'#D0E8EE','--retold-bg-tertiary':'#C0DDE6','--retold-bg-panel':'#D8EEF2','--retold-bg-viewer':'#F0F8FA','--retold-bg-hover':'#B0D4E0','--retold-bg-selected':'#88C4D8','--retold-bg-thumb':'#D0E8EE','--retold-text-primary':'#1A3A4A','--retold-text-secondary':'#2A4A5A','--retold-text-muted':'#5A7A8A','--retold-text-dim':'#7A9AAA','--retold-text-placeholder':'#9ABACA','--retold-accent':'#0099CC','--retold-accent-hover':'#00AADD','--retold-border':'#A0C8D8','--retold-border-light':'#B8D8E4','--retold-danger':'#CC3300','--retold-danger-muted':'#994422','--retold-scrollbar':'#A0C8D8','--retold-scrollbar-hover':'#88B8CC','--retold-selection-bg':'rgba(0, 153, 204, 0.2)','--retold-focus-outline':'#0099CC','--retold-font-family':"Verdana, Geneva, Tahoma, sans-serif",'--retold-font-mono':"'Lucida Console', Monaco, monospace"},IconColors:{Primary:'#2A4A5A',Accent:'#0099CC',Muted:'#7A9AAA',Light:'#C0DDE6',WarmBeige:'#D0E8EE',TealTint:'#B0D8E4',Lavender:'#C8DCE6',AmberTint:'#D8E0D0',PdfFill:'#E0C8C0',PdfText:'#CC3300'}});tmpSelf._addTheme('synthwave',{Name:'Synthwave',Category:'Fun',Description:'Purple and pink neon',Variables:{'--retold-bg-primary':'#1A0A2E','--retold-bg-secondary':'#140824','--retold-bg-tertiary':'#200E38','--retold-bg-panel':'#1C0C32','--retold-bg-viewer':'#100620','--retold-bg-hover':'#2A1848','--retold-bg-selected':'#3A2060','--retold-bg-thumb':'#140824','--retold-text-primary':'#E8C0F8','--retold-text-secondary':'#D0A8E8','--retold-text-muted':'#9878B8','--retold-text-dim':'#7858A8','--retold-text-placeholder':'#584088','--retold-accent':'#FF71CE','--retold-accent-hover':'#FF99DD','--retold-border':'#302050','--retold-border-light':'#402868','--retold-danger':'#FF4488','--retold-danger-muted':'#AA3366','--retold-scrollbar':'#302050','--retold-scrollbar-hover':'#402868','--retold-selection-bg':'rgba(255, 113, 206, 0.25)','--retold-focus-outline':'#FF71CE','--retold-font-family':"'Trebuchet MS', sans-serif",'--retold-font-mono':"'Courier New', monospace"},IconColors:{Primary:'#D0A8E8',Accent:'#FF71CE',Muted:'#7858A8',Light:'#200E38',WarmBeige:'#221040',TealTint:'#1A0C30',Lavender:'#1E0E36',AmberTint:'#241028',PdfFill:'#241020',PdfText:'#FF4488'}});tmpSelf._addTheme('solarized-dark',{Name:'Solarized Dark',Category:'Fun',Description:"Schoonover's classic palette",Variables:{'--retold-bg-primary':'#002B36','--retold-bg-secondary':'#073642','--retold-bg-tertiary':'#003B4A','--retold-bg-panel':'#00303C','--retold-bg-viewer':'#001E28','--retold-bg-hover':'#0A4858','--retold-bg-selected':'#155868','--retold-bg-thumb':'#073642','--retold-text-primary':'#FDF6E3','--retold-text-secondary':'#EEE8D5','--retold-text-muted':'#93A1A1','--retold-text-dim':'#839496','--retold-text-placeholder':'#657B83','--retold-accent':'#268BD2','--retold-accent-hover':'#45A0E0','--retold-border':'#0A4050','--retold-border-light':'#125868','--retold-danger':'#DC322F','--retold-danger-muted':'#AA2A28','--retold-scrollbar':'#0A4050','--retold-scrollbar-hover':'#125868','--retold-selection-bg':'rgba(38, 139, 210, 0.25)','--retold-focus-outline':'#268BD2','--retold-font-family':"'Source Code Pro', 'Fira Code', monospace",'--retold-font-mono':"'Source Code Pro', 'Fira Code', monospace"},IconColors:{Primary:'#EEE8D5',Accent:'#268BD2',Muted:'#839496',Light:'#003B4A',WarmBeige:'#073642',TealTint:'#004050',Lavender:'#003848',AmberTint:'#0A3A30',PdfFill:'#0A3028',PdfText:'#DC322F'}});tmpSelf._addTheme('forest',{Name:'Forest',Category:'Fun',Description:'Deep greens and earth browns',Variables:{'--retold-bg-primary':'#1A2018','--retold-bg-secondary':'#141A12','--retold-bg-tertiary':'#1E2620','--retold-bg-panel':'#1C221A','--retold-bg-viewer':'#101410','--retold-bg-hover':'#283828','--retold-bg-selected':'#344834','--retold-bg-thumb':'#141A12','--retold-text-primary':'#D0DCC8','--retold-text-secondary':'#B0C4A8','--retold-text-muted':'#809878','--retold-text-dim':'#607858','--retold-text-placeholder':'#486040','--retold-accent':'#6AAF5C','--retold-accent-hover':'#88CC78','--retold-border':'#2A3A28','--retold-border-light':'#3A4A38','--retold-danger':'#CC4422','--retold-danger-muted':'#884422','--retold-scrollbar':'#2A3A28','--retold-scrollbar-hover':'#3A4A38','--retold-selection-bg':'rgba(106, 175, 92, 0.25)','--retold-focus-outline':'#6AAF5C','--retold-font-family':"'Palatino Linotype', 'Book Antiqua', Palatino, serif",'--retold-font-mono':"'Courier New', monospace"},IconColors:{Primary:'#B0C4A8',Accent:'#6AAF5C',Muted:'#607858',Light:'#1E2620',WarmBeige:'#22281E',TealTint:'#1A221A',Lavender:'#1E2420',AmberTint:'#262218',PdfFill:'#261A18',PdfText:'#CC4422'}});}/**
9959
+ tmpSelf._addTheme('neo-tokyo',{Name:'Neo-Tokyo',Category:'Fun',Description:'Neon pink on dark navy',Variables:{'--retold-bg-primary':'#0D0D2B','--retold-bg-secondary':'#080820','--retold-bg-tertiary':'#121235','--retold-bg-panel':'#0F0F28','--retold-bg-viewer':'#060615','--retold-bg-hover':'#1A1A42','--retold-bg-selected':'#2A1845','--retold-bg-thumb':'#080820','--retold-text-primary':'#E8E0F0','--retold-text-secondary':'#D0C8E0','--retold-text-muted':'#9088A8','--retold-text-dim':'#6860A0','--retold-text-placeholder':'#504888','--retold-accent':'#FF2D8A','--retold-accent-hover':'#FF5AA0','--retold-border':'#2A2050','--retold-border-light':'#382868','--retold-danger':'#FF4466','--retold-danger-muted':'#AA3355','--retold-scrollbar':'#2A2050','--retold-scrollbar-hover':'#3A3068','--retold-selection-bg':'rgba(255, 45, 138, 0.25)','--retold-focus-outline':'#FF2D8A','--retold-font-family':"'Courier New', monospace",'--retold-font-mono':"'Courier New', monospace"},IconColors:{Primary:'#D0C8E0',Accent:'#FF2D8A',Muted:'#6860A0',Light:'#121235',WarmBeige:'#141438',TealTint:'#100E30',Lavender:'#141232',AmberTint:'#1A1228',PdfFill:'#1A1028',PdfText:'#FF4466'}});tmpSelf._addTheme('cyberpunk',{Name:'Cyberpunk',Category:'Fun',Description:'Electric green on black',Variables:{'--retold-bg-primary':'#0A0E0A','--retold-bg-secondary':'#060806','--retold-bg-tertiary':'#0E120E','--retold-bg-panel':'#0C100C','--retold-bg-viewer':'#040604','--retold-bg-hover':'#142014','--retold-bg-selected':'#1A3A1A','--retold-bg-thumb':'#060806','--retold-text-primary':'#C8FFC8','--retold-text-secondary':'#A0D8A0','--retold-text-muted':'#608860','--retold-text-dim':'#406040','--retold-text-placeholder':'#305030','--retold-accent':'#00FF41','--retold-accent-hover':'#44FF77','--retold-border':'#1A2A1A','--retold-border-light':'#224022','--retold-danger':'#FF3333','--retold-danger-muted':'#AA2222','--retold-scrollbar':'#1A2A1A','--retold-scrollbar-hover':'#2A4A2A','--retold-selection-bg':'rgba(0, 255, 65, 0.2)','--retold-focus-outline':'#00FF41','--retold-font-family':"'Lucida Console', 'Courier New', monospace",'--retold-font-mono':"'Lucida Console', 'Courier New', monospace"},IconColors:{Primary:'#A0D8A0',Accent:'#00FF41',Muted:'#406040',Light:'#0E120E',WarmBeige:'#101610',TealTint:'#0C140C',Lavender:'#0E120E',AmberTint:'#141810',PdfFill:'#181010',PdfText:'#FF3333'}});tmpSelf._addTheme('hotdog',{Name:'Hotdog',Category:'Fun',Description:'Red and mustard yellow, garish',Variables:{'--retold-bg-primary':'#8B0000','--retold-bg-secondary':'#6B0000','--retold-bg-tertiary':'#7B0000','--retold-bg-panel':'#750000','--retold-bg-viewer':'#550000','--retold-bg-hover':'#AA1111','--retold-bg-selected':'#BB3300','--retold-bg-thumb':'#6B0000','--retold-text-primary':'#FFD700','--retold-text-secondary':'#FFC000','--retold-text-muted':'#CC9900','--retold-text-dim':'#AA7700','--retold-text-placeholder':'#886600','--retold-accent':'#FFD700','--retold-accent-hover':'#FFEE44','--retold-border':'#AA2222','--retold-border-light':'#BB3333','--retold-danger':'#FFFF00','--retold-danger-muted':'#CCCC00','--retold-scrollbar':'#AA2222','--retold-scrollbar-hover':'#CC3333','--retold-selection-bg':'rgba(255, 215, 0, 0.3)','--retold-focus-outline':'#FFD700','--retold-font-family':"Impact, 'Arial Black', sans-serif",'--retold-font-mono':"'Courier New', monospace"},IconColors:{Primary:'#FFC000',Accent:'#FFD700',Muted:'#AA7700',Light:'#7B0000',WarmBeige:'#800000',TealTint:'#6B0000',Lavender:'#780000',AmberTint:'#7A1000',PdfFill:'#6B0000',PdfText:'#FFFF00'}});tmpSelf._addTheme('1970s-console',{Name:'1970s Console',Category:'Fun',Description:'Amber phosphor on brown-black',Variables:{'--retold-bg-primary':'#1A1000','--retold-bg-secondary':'#140C00','--retold-bg-tertiary':'#1E1400','--retold-bg-panel':'#1C1200','--retold-bg-viewer':'#100A00','--retold-bg-hover':'#2A1C00','--retold-bg-selected':'#3A2800','--retold-bg-thumb':'#140C00','--retold-text-primary':'#FFAA00','--retold-text-secondary':'#DD8800','--retold-text-muted':'#AA6600','--retold-text-dim':'#884400','--retold-text-placeholder':'#663300','--retold-accent':'#FFCC00','--retold-accent-hover':'#FFDD44','--retold-border':'#2A1800','--retold-border-light':'#3A2200','--retold-danger':'#FF4400','--retold-danger-muted':'#AA3300','--retold-scrollbar':'#2A1800','--retold-scrollbar-hover':'#3A2800','--retold-selection-bg':'rgba(255, 204, 0, 0.2)','--retold-focus-outline':'#FFCC00','--retold-font-family':"'Courier New', 'Lucida Console', monospace",'--retold-font-mono':"'Courier New', 'Lucida Console', monospace"},IconColors:{Primary:'#DD8800',Accent:'#FFCC00',Muted:'#884400',Light:'#1E1400',WarmBeige:'#201800',TealTint:'#1A1000',Lavender:'#1C1200',AmberTint:'#221800',PdfFill:'#201000',PdfText:'#FF4400'}});tmpSelf._addTheme('1980s-console',{Name:'1980s Console',Category:'Fun',Description:'Green phosphor on black',Variables:{'--retold-bg-primary':'#001200','--retold-bg-secondary':'#000E00','--retold-bg-tertiary':'#001600','--retold-bg-panel':'#001400','--retold-bg-viewer':'#000A00','--retold-bg-hover':'#002200','--retold-bg-selected':'#003800','--retold-bg-thumb':'#000E00','--retold-text-primary':'#00FF00','--retold-text-secondary':'#00CC00','--retold-text-muted':'#009900','--retold-text-dim':'#006600','--retold-text-placeholder':'#004400','--retold-accent':'#00FF66','--retold-accent-hover':'#44FF88','--retold-border':'#002A00','--retold-border-light':'#003A00','--retold-danger':'#FF0000','--retold-danger-muted':'#AA0000','--retold-scrollbar':'#002A00','--retold-scrollbar-hover':'#004400','--retold-selection-bg':'rgba(0, 255, 102, 0.2)','--retold-focus-outline':'#00FF66','--retold-font-family':"'Courier New', monospace",'--retold-font-mono':"'Courier New', monospace"},IconColors:{Primary:'#00CC00',Accent:'#00FF66',Muted:'#006600',Light:'#001600',WarmBeige:'#001A00',TealTint:'#001200',Lavender:'#001400',AmberTint:'#001800',PdfFill:'#140000',PdfText:'#FF0000'}});tmpSelf._addTheme('1990s-website',{Name:'1990s Web Site',Category:'Fun',Description:'Blue links on grey, beveled',Variables:{'--retold-bg-primary':'#C0C0C0','--retold-bg-secondary':'#B0B0B0','--retold-bg-tertiary':'#A8A8A8','--retold-bg-panel':'#B8B8B8','--retold-bg-viewer':'#D0D0D0','--retold-bg-hover':'#B8B8D0','--retold-bg-selected':'#000080','--retold-bg-thumb':'#B0B0B0','--retold-text-primary':'#000000','--retold-text-secondary':'#000080','--retold-text-muted':'#404040','--retold-text-dim':'#606060','--retold-text-placeholder':'#808080','--retold-accent':'#0000FF','--retold-accent-hover':'#0000CC','--retold-border':'#808080','--retold-border-light':'#A0A0A0','--retold-danger':'#FF0000','--retold-danger-muted':'#990000','--retold-scrollbar':'#808080','--retold-scrollbar-hover':'#606060','--retold-selection-bg':'rgba(0, 0, 128, 0.3)','--retold-focus-outline':'#0000FF','--retold-font-family':"'Times New Roman', Times, serif",'--retold-font-mono':"'Courier New', Courier, monospace"},IconColors:{Primary:'#000080',Accent:'#0000FF',Muted:'#606060',Light:'#A8A8A8',WarmBeige:'#B0B0B0',TealTint:'#A0A0A0',Lavender:'#ABABD0',AmberTint:'#B8B0A0',PdfFill:'#C0A0A0',PdfText:'#FF0000'}});tmpSelf._addTheme('early-2000s',{Name:'Early 2000s Web',Category:'Fun',Description:'Teal and silver, Web 2.0',Variables:{'--retold-bg-primary':'#E8F4F8','--retold-bg-secondary':'#D0E8EE','--retold-bg-tertiary':'#C0DDE6','--retold-bg-panel':'#D8EEF2','--retold-bg-viewer':'#F0F8FA','--retold-bg-hover':'#B0D4E0','--retold-bg-selected':'#88C4D8','--retold-bg-thumb':'#D0E8EE','--retold-text-primary':'#1A3A4A','--retold-text-secondary':'#2A4A5A','--retold-text-muted':'#5A7A8A','--retold-text-dim':'#7A9AAA','--retold-text-placeholder':'#9ABACA','--retold-accent':'#0099CC','--retold-accent-hover':'#00AADD','--retold-border':'#A0C8D8','--retold-border-light':'#B8D8E4','--retold-danger':'#CC3300','--retold-danger-muted':'#994422','--retold-scrollbar':'#A0C8D8','--retold-scrollbar-hover':'#88B8CC','--retold-selection-bg':'rgba(0, 153, 204, 0.2)','--retold-focus-outline':'#0099CC','--retold-font-family':"Verdana, Geneva, Tahoma, sans-serif",'--retold-font-mono':"'Lucida Console', Monaco, monospace"},IconColors:{Primary:'#2A4A5A',Accent:'#0099CC',Muted:'#7A9AAA',Light:'#C0DDE6',WarmBeige:'#D0E8EE',TealTint:'#B0D8E4',Lavender:'#C8DCE6',AmberTint:'#D8E0D0',PdfFill:'#E0C8C0',PdfText:'#CC3300'}});tmpSelf._addTheme('synthwave',{Name:'Synthwave',Category:'Fun',Description:'Purple and pink neon',Variables:{'--retold-bg-primary':'#1A0A2E','--retold-bg-secondary':'#140824','--retold-bg-tertiary':'#200E38','--retold-bg-panel':'#1C0C32','--retold-bg-viewer':'#100620','--retold-bg-hover':'#2A1848','--retold-bg-selected':'#3A2060','--retold-bg-thumb':'#140824','--retold-text-primary':'#E8C0F8','--retold-text-secondary':'#D0A8E8','--retold-text-muted':'#9878B8','--retold-text-dim':'#7858A8','--retold-text-placeholder':'#584088','--retold-accent':'#FF71CE','--retold-accent-hover':'#FF99DD','--retold-border':'#302050','--retold-border-light':'#402868','--retold-danger':'#FF4488','--retold-danger-muted':'#AA3366','--retold-scrollbar':'#302050','--retold-scrollbar-hover':'#402868','--retold-selection-bg':'rgba(255, 113, 206, 0.25)','--retold-focus-outline':'#FF71CE','--retold-font-family':"'Trebuchet MS', sans-serif",'--retold-font-mono':"'Courier New', monospace"},IconColors:{Primary:'#D0A8E8',Accent:'#FF71CE',Muted:'#7858A8',Light:'#200E38',WarmBeige:'#221040',TealTint:'#1A0C30',Lavender:'#1E0E36',AmberTint:'#241028',PdfFill:'#241020',PdfText:'#FF4488'}});tmpSelf._addTheme('solarized-dark',{Name:'Solarized Dark',Category:'Fun',Description:"Schoonover's classic palette",Variables:{'--retold-bg-primary':'#002B36','--retold-bg-secondary':'#073642','--retold-bg-tertiary':'#003B4A','--retold-bg-panel':'#00303C','--retold-bg-viewer':'#001E28','--retold-bg-hover':'#0A4858','--retold-bg-selected':'#155868','--retold-bg-thumb':'#073642','--retold-text-primary':'#FDF6E3','--retold-text-secondary':'#EEE8D5','--retold-text-muted':'#93A1A1','--retold-text-dim':'#839496','--retold-text-placeholder':'#657B83','--retold-accent':'#268BD2','--retold-accent-hover':'#45A0E0','--retold-border':'#0A4050','--retold-border-light':'#125868','--retold-danger':'#DC322F','--retold-danger-muted':'#AA2A28','--retold-scrollbar':'#0A4050','--retold-scrollbar-hover':'#125868','--retold-selection-bg':'rgba(38, 139, 210, 0.25)','--retold-focus-outline':'#268BD2','--retold-font-family':"'Source Code Pro', 'Fira Code', monospace",'--retold-font-mono':"'Source Code Pro', 'Fira Code', monospace"},IconColors:{Primary:'#EEE8D5',Accent:'#268BD2',Muted:'#839496',Light:'#003B4A',WarmBeige:'#073642',TealTint:'#004050',Lavender:'#003848',AmberTint:'#0A3A30',PdfFill:'#0A3028',PdfText:'#DC322F'}});tmpSelf._addTheme('forest',{Name:'Forest',Category:'Fun',Description:'Deep greens and earth browns',Variables:{'--retold-bg-primary':'#1A2018','--retold-bg-secondary':'#141A12','--retold-bg-tertiary':'#1E2620','--retold-bg-panel':'#1C221A','--retold-bg-viewer':'#101410','--retold-bg-hover':'#283828','--retold-bg-selected':'#344834','--retold-bg-thumb':'#141A12','--retold-text-primary':'#D0DCC8','--retold-text-secondary':'#B0C4A8','--retold-text-muted':'#809878','--retold-text-dim':'#607858','--retold-text-placeholder':'#486040','--retold-accent':'#6AAF5C','--retold-accent-hover':'#88CC78','--retold-border':'#2A3A28','--retold-border-light':'#3A4A38','--retold-danger':'#CC4422','--retold-danger-muted':'#884422','--retold-scrollbar':'#2A3A28','--retold-scrollbar-hover':'#3A4A38','--retold-selection-bg':'rgba(106, 175, 92, 0.25)','--retold-focus-outline':'#6AAF5C','--retold-font-family':"'Palatino Linotype', 'Book Antiqua', Palatino, serif",'--retold-font-mono':"'Courier New', monospace"},IconColors:{Primary:'#B0C4A8',Accent:'#6AAF5C',Muted:'#607858',Light:'#1E2620',WarmBeige:'#22281E',TealTint:'#1A221A',Lavender:'#1E2420',AmberTint:'#262218',PdfFill:'#261A18',PdfText:'#CC4422'}});// ===================================================================
9960
+ // DEBUG THEME (unique color per container for layout debugging)
9961
+ // ===================================================================
9962
+ tmpSelf._addTheme('mobile-debug',{Name:'Mobile Container Debug',Category:'Debug',Description:'Unique color per container for layout debugging',Variables:{'--retold-bg-primary':'#FF0000','--retold-bg-secondary':'#00CCCC','--retold-bg-tertiary':'#00AA00','--retold-bg-panel':'#FFAA00','--retold-bg-viewer':'#333333','--retold-bg-hover':'rgba(255, 255, 255, 0.2)','--retold-bg-selected':'rgba(255, 255, 255, 0.3)','--retold-bg-thumb':'#AA00AA','--retold-text-primary':'#FFFFFF','--retold-text-secondary':'#EEEEEE','--retold-text-muted':'#CCCCCC','--retold-text-dim':'#AAAAAA','--retold-text-placeholder':'#888888','--retold-accent':'#FFFF00','--retold-accent-hover':'#FFFF88','--retold-border':'#FFFFFF','--retold-border-light':'#CCCCCC','--retold-danger':'#FF0000','--retold-danger-muted':'#CC4444','--retold-scrollbar':'#888888','--retold-scrollbar-hover':'#AAAAAA','--retold-selection-bg':'rgba(255, 255, 0, 0.3)','--retold-focus-outline':'#FFFF00','--retold-font-family':"system-ui, -apple-system, sans-serif",'--retold-font-mono':"'SF Mono', 'Consolas', monospace"},IconColors:{Primary:'#FFFFFF',Accent:'#FFFF00',Muted:'#CCCCCC',Light:'#333333',WarmBeige:'#FFAA00',TealTint:'#00CCCC',Lavender:'#AA00AA',AmberTint:'#FFAA00',PdfFill:'#FF4444',PdfText:'#FFFFFF'}});}/**
9960
9963
  * Register a theme in the internal map and order list.
9961
9964
  */_addTheme(pKey,pTheme){this._themes[pKey]=pTheme;this._themeOrder.push(pKey);}/**
9962
9965
  * Apply a theme by key. Injects CSS variables into a dedicated <style>
@@ -12101,6 +12104,7 @@ return{width:tmpNW,height:tmpNH};}}}/**
12101
12104
  #RetoldRemote-Gallery-Container
12102
12105
  {
12103
12106
  padding: 12px;
12107
+ padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
12104
12108
  min-height: 100%;
12105
12109
  }
12106
12110
  #RetoldRemote-Viewer-Container
@@ -12119,6 +12123,57 @@ return{width:tmpNW,height:tmpNH};}}}/**
12119
12123
  display: none;
12120
12124
  }
12121
12125
 
12126
+ /* ---- Right-side Collections Panel ---- */
12127
+ .retold-remote-collections-wrap
12128
+ {
12129
+ display: flex;
12130
+ flex-shrink: 0;
12131
+ position: relative;
12132
+ transition: width 0.2s ease;
12133
+ border-left: 1px solid var(--retold-border);
12134
+ }
12135
+ .retold-remote-collections-wrap.collapsed
12136
+ {
12137
+ width: 0 !important;
12138
+ border-left: none;
12139
+ }
12140
+ .retold-remote-collections-wrap.collapsed .retold-remote-collections-inner
12141
+ {
12142
+ visibility: hidden;
12143
+ }
12144
+ .retold-remote-collections-wrap.collapsed .retold-remote-collections-resize-handle
12145
+ {
12146
+ display: none;
12147
+ }
12148
+ .retold-remote-collections-inner
12149
+ {
12150
+ display: flex;
12151
+ flex-direction: column;
12152
+ flex: 1;
12153
+ min-width: 0;
12154
+ min-height: 0;
12155
+ overflow: hidden;
12156
+ background: var(--retold-bg-primary);
12157
+ }
12158
+ .retold-remote-collections-resize-handle
12159
+ {
12160
+ position: absolute;
12161
+ left: 0;
12162
+ top: 0;
12163
+ bottom: 0;
12164
+ width: 5px;
12165
+ cursor: col-resize;
12166
+ z-index: 10;
12167
+ display: flex;
12168
+ align-items: center;
12169
+ justify-content: center;
12170
+ }
12171
+ .retold-remote-collections-resize-handle:hover
12172
+ {
12173
+ background: var(--retold-accent);
12174
+ opacity: 0.3;
12175
+ }
12176
+
12122
12177
  /* ============================================================
12123
12178
  MOBILE: Sidebar becomes a top drawer
12124
12179
  ============================================================ */
@@ -12190,62 +12245,19 @@ return{width:tmpNW,height:tmpNH};}}}/**
12190
12245
  min-height: 0;
12191
12246
  }
12192
12247
 
12193
- /* Collections panel: hide in mobile */
12194
- .retold-remote-collections-wrap
12248
+ /* Gallery: don't force min-height on small screens */
12249
+ #RetoldRemote-Gallery-Container
12195
12250
  {
12196
- display: none;
12251
+ min-height: auto;
12197
12252
  }
12198
- }
12199
12253
 
12200
- /* ---- Right-side Collections Panel ---- */
12201
- .retold-remote-collections-wrap
12202
- {
12203
- display: flex;
12204
- flex-shrink: 0;
12205
- position: relative;
12206
- transition: width 0.2s ease;
12207
- border-left: 1px solid var(--retold-border);
12208
- }
12209
- .retold-remote-collections-wrap.collapsed
12210
- {
12211
- width: 0 !important;
12212
- border-left: none;
12213
- }
12214
- .retold-remote-collections-wrap.collapsed .retold-remote-collections-inner
12215
- {
12216
- visibility: hidden;
12217
- }
12218
- .retold-remote-collections-wrap.collapsed .retold-remote-collections-resize-handle
12219
- {
12220
- display: none;
12221
- }
12222
- .retold-remote-collections-inner
12223
- {
12224
- display: flex;
12225
- flex-direction: column;
12226
- flex: 1;
12227
- min-width: 0;
12228
- min-height: 0;
12229
- overflow: hidden;
12230
- background: var(--retold-bg-primary);
12231
- }
12232
- .retold-remote-collections-resize-handle
12233
- {
12234
- position: absolute;
12235
- left: 0;
12236
- top: 0;
12237
- bottom: 0;
12238
- width: 5px;
12239
- cursor: col-resize;
12240
- z-index: 10;
12241
- display: flex;
12242
- align-items: center;
12243
- justify-content: center;
12244
- }
12245
- .retold-remote-collections-resize-handle:hover
12246
- {
12247
- background: var(--retold-accent);
12248
- opacity: 0.3;
12254
+ /* Collections panel: fully hidden on mobile */
12255
+ .retold-remote-collections-wrap,
12256
+ .retold-remote-collections-wrap.collapsed
12257
+ {
12258
+ display: none !important;
12259
+ height: 0 !important;
12260
+ }
12249
12261
  }
12250
12262
  `,Templates:[{Hash:"RetoldRemote-Layout-Shell",Template:/*html*/`
12251
12263
  <div id="ContentEditor-TopBar-Container"></div>
@@ -13169,7 +13181,7 @@ if(pKey==='NamingTemplate'){this._renderSettingsContent();}}/**
13169
13181
  display: flex;
13170
13182
  align-items: center;
13171
13183
  justify-content: center;
13172
- overflow: visible;
13184
+ overflow: hidden;
13173
13185
  min-width: 0;
13174
13186
  }
13175
13187
  .retold-remote-topbar-location-inner
@@ -13304,9 +13316,13 @@ if(pKey==='NamingTemplate'){this._renderSettingsContent();}}/**
13304
13316
  }
13305
13317
  .retold-remote-topbar-info
13306
13318
  {
13307
- flex-shrink: 0;
13319
+ flex-shrink: 1;
13320
+ min-width: 0;
13308
13321
  font-size: 0.75rem;
13309
13322
  color: var(--retold-text-dim);
13323
+ overflow: hidden;
13324
+ text-overflow: ellipsis;
13325
+ white-space: nowrap;
13310
13326
  }
13311
13327
  .retold-remote-topbar-actions
13312
13328
  {
@@ -13461,6 +13477,18 @@ if(pKey==='NamingTemplate'){this._renderSettingsContent();}}/**
13461
13477
  font-weight: 700;
13462
13478
  text-align: center;
13463
13479
  }
13480
+ @media (max-width: 600px)
13481
+ {
13482
+ .retold-remote-topbar
13483
+ {
13484
+ padding: 0 8px;
13485
+ gap: 6px;
13486
+ }
13487
+ .retold-remote-topbar-actions
13488
+ {
13489
+ gap: 4px;
13490
+ }
13491
+ }
13464
13492
  `,Templates:[{Hash:"RetoldRemote-TopBar",Template:/*html*/`
13465
13493
  <div class="retold-remote-topbar">
13466
13494
  <button class="retold-remote-topbar-sidebar-toggle" id="RetoldRemote-TopBar-SidebarToggle" onclick="pict.views['ContentEditor-Layout'].toggleSidebar()" title="Toggle Sidebar"></button>
@@ -13468,8 +13496,8 @@ if(pKey==='NamingTemplate'){this._renderSettingsContent();}}/**
13468
13496
  <div class="retold-remote-topbar-location" id="RetoldRemote-TopBar-Location"></div>
13469
13497
  <div class="retold-remote-topbar-info" id="RetoldRemote-TopBar-Info"></div>
13470
13498
  <div class="retold-remote-topbar-actions">
13471
- <button class="retold-remote-topbar-aisort-btn" id="RetoldRemote-TopBar-AISortBtn" onclick="pict.views['ContentEditor-TopBar'].triggerAISort()" title="AI Sort (generate sort plan for current folder)" style="display:none;">AI Sort</button>
13472
- <button class="retold-remote-topbar-btn retold-remote-topbar-addcoll-btn" id="RetoldRemote-TopBar-AddToCollectionBtn" onclick="pict.views['ContentEditor-TopBar'].addToCollection(event)" title="Add to collection">+&#9733;</button>
13499
+ <button class="retold-remote-topbar-aisort-btn" id="RetoldRemote-TopBar-AISortBtn" onclick="pict.views['ContentEditor-TopBar'].triggerAISort()" title="AI Sort (generate sort plan for current folder)" style="display:none;">Ai</button>
13500
+ <button class="retold-remote-topbar-btn retold-remote-topbar-addcoll-btn" id="RetoldRemote-TopBar-AddToCollectionBtn" onclick="pict.views['ContentEditor-TopBar'].addToCollection(event)" title="Add to collection">&#9733;</button>
13473
13501
  <button class="retold-remote-topbar-sidebar-toggle retold-remote-topbar-collections-btn" id="RetoldRemote-TopBar-CollectionsBtn" onclick="pict.views['ContentEditor-TopBar'].toggleCollections()" title="Toggle Collections panel (b)">&#9733;</button>
13474
13502
  <button class="retold-remote-topbar-filter-btn" id="RetoldRemote-TopBar-FilterBtn" onclick="pict.views['ContentEditor-TopBar'].toggleFilterBar()" title="Toggle filter bar (/)">&#9698;</button>
13475
13503
  </div>
@@ -13524,8 +13552,8 @@ tmpBtn.innerHTML='&#9698;';tmpBtn.title='Toggle filter bar (/)';}}/**
13524
13552
  /**
13525
13553
  * Trigger AI sort for the current folder.
13526
13554
  */triggerAISort(){let tmpAISortManager=this.pict.providers['RetoldRemote-AISortManager'];if(!tmpAISortManager){return;}let tmpCurrentPath=this.pict.AppData.PictFileBrowser&&this.pict.AppData.PictFileBrowser.CurrentLocation||'';// Show generating state
13527
- let tmpBtn=document.getElementById('RetoldRemote-TopBar-AISortBtn');if(tmpBtn){tmpBtn.classList.add('generating');tmpBtn.textContent='Sorting...';}tmpAISortManager.generateSortPlan(tmpCurrentPath,(pError,pResult)=>{// Reset button state
13528
- if(tmpBtn){tmpBtn.classList.remove('generating');tmpBtn.textContent='AI Sort';}});}/**
13555
+ let tmpBtn=document.getElementById('RetoldRemote-TopBar-AISortBtn');if(tmpBtn){tmpBtn.classList.add('generating');tmpBtn.textContent='...';}tmpAISortManager.generateSortPlan(tmpCurrentPath,(pError,pResult)=>{// Reset button state
13556
+ if(tmpBtn){tmpBtn.classList.remove('generating');tmpBtn.textContent='Ai';}});}/**
13529
13557
  * Update the AI Sort button visibility.
13530
13558
  * Shows only when browsing a folder (gallery mode).
13531
13559
  */updateAISortButton(){let tmpBtn=document.getElementById('RetoldRemote-TopBar-AISortBtn');if(!tmpBtn){return;}let tmpAISortManager=this.pict.providers['RetoldRemote-AISortManager'];if(tmpAISortManager&&tmpAISortManager.isAvailable()){tmpBtn.style.display='';}else{tmpBtn.style.display='none';}}// -- Collections Panel ------------------------------------------------