momo-ai 1.0.21 → 1.0.22

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.
Files changed (94) hide show
  1. package/.claude/skills/r2mo-rad-lain/SKILL.md +63 -374
  2. package/.trae/skills/algorithmic-art/LICENSE.txt +202 -0
  3. package/.trae/skills/algorithmic-art/SKILL.md +405 -0
  4. package/.trae/skills/algorithmic-art/templates/generator_template.js +223 -0
  5. package/.trae/skills/algorithmic-art/templates/viewer.html +599 -0
  6. package/.trae/skills/doc-coauthoring/SKILL.md +375 -0
  7. package/.trae/skills/frontend-design/LICENSE.txt +177 -0
  8. package/.trae/skills/frontend-design/SKILL.md +42 -0
  9. package/.trae/skills/r2mo-rad-lain/SKILL.md +101 -0
  10. package/README.md +9 -32
  11. package/docs/images/r2mo-lain.png +0 -0
  12. package/package.json +11 -11
  13. package/skills/r2mo-rad-domain/SKILL.md +70 -0
  14. package/src/_skill/repositories.json +9 -3
  15. package/src/_template/LAIN/.obsidian/app.json +1 -0
  16. package/src/_template/LAIN/.obsidian/appearance.json +10 -0
  17. package/src/_template/LAIN/.obsidian/community-plugins.json +7 -0
  18. package/src/_template/LAIN/.obsidian/core-plugins.json +33 -0
  19. package/src/_template/LAIN/.obsidian/plugins/dataview/main.js +20876 -0
  20. package/src/_template/LAIN/.obsidian/plugins/dataview/manifest.json +11 -0
  21. package/src/_template/LAIN/.obsidian/plugins/dataview/styles.css +141 -0
  22. package/src/_template/LAIN/.obsidian/plugins/obsidian-excalidraw-plugin/data.json +815 -0
  23. package/src/_template/LAIN/.obsidian/plugins/obsidian-excalidraw-plugin/main.js +10 -0
  24. package/src/_template/LAIN/.obsidian/plugins/obsidian-excalidraw-plugin/manifest.json +12 -0
  25. package/src/_template/LAIN/.obsidian/plugins/obsidian-excalidraw-plugin/styles.css +1 -0
  26. package/src/_template/LAIN/.obsidian/plugins/obsidian-kanban/main.js +153 -0
  27. package/src/_template/LAIN/.obsidian/plugins/obsidian-kanban/manifest.json +11 -0
  28. package/src/_template/LAIN/.obsidian/plugins/obsidian-kanban/styles.css +1 -0
  29. package/src/_template/LAIN/.obsidian/plugins/obsidian-plantuml/main.js +7732 -0
  30. package/src/_template/LAIN/.obsidian/plugins/obsidian-plantuml/manifest.json +10 -0
  31. package/src/_template/LAIN/.obsidian/plugins/obsidian-plantuml/styles.css +38 -0
  32. package/src/_template/LAIN/.obsidian/plugins/obsidian-tasks-plugin/main.js +504 -0
  33. package/src/_template/LAIN/.obsidian/plugins/obsidian-tasks-plugin/manifest.json +12 -0
  34. package/src/_template/LAIN/.obsidian/plugins/obsidian-tasks-plugin/styles.css +1 -0
  35. package/src/_template/LAIN/.obsidian/snippets/body-font.css +27 -0
  36. package/src/_template/LAIN/.obsidian/themes/Primary/manifest.json +9 -0
  37. package/src/_template/LAIN/.obsidian/themes/Primary/theme.css +3878 -0
  38. package/src/_template/LAIN/.obsidian/themes/Retro Windows/manifest.json +7 -0
  39. package/src/_template/LAIN/.obsidian/themes/Retro Windows/theme.css +582 -0
  40. package/src/_template/LAIN/.obsidian/themes/RetroOS 98/manifest.json +9 -0
  41. package/src/_template/LAIN/.obsidian/themes/RetroOS 98/theme.css +2566 -0
  42. package/src/_template/LAIN/.obsidian/types.json +28 -0
  43. package/src/_template/LAIN/.obsidian/workspace.json +184 -0
  44. package/src/_template/LAIN/AGENTS.md +170 -16
  45. package/src/_template/R2MO/domain-enhance.md +10 -0
  46. package/src/commander/app.json +13 -0
  47. package/src/commander/apply.json +13 -0
  48. package/src/commander/ask.json +6 -0
  49. package/src/commander/docs.json +13 -0
  50. package/src/commander/domain.json +19 -0
  51. package/src/commander/init.json +1 -1
  52. package/src/commander/mmr0.json +6 -0
  53. package/src/commander/mmr2.json +6 -0
  54. package/src/executor/executeApp.js +133 -0
  55. package/src/executor/{executeSkills.js → executeApply.js} +166 -302
  56. package/src/executor/executeAsk.js +274 -0
  57. package/src/executor/executeDocs.js +498 -0
  58. package/src/executor/executeDomain.js +293 -0
  59. package/src/executor/executeInit.js +159 -383
  60. package/src/executor/executeMcp.js +74 -1
  61. package/src/executor/executeMmr0.js +488 -0
  62. package/src/executor/executeMmr2.js +880 -0
  63. package/src/executor/index.js +15 -3
  64. package/src/python/r2mo_proto.py +418 -0
  65. package/src/python/r2mo_proto_database.py +369 -0
  66. package/src/python/r2mo_proto_domain.py +458 -0
  67. package/src/utils/momo-menu.js +43 -13
  68. package/.claude/skills/r2mo-rad-lain/PROMPT.md +0 -281
  69. package/.claude/skills/r2mo-rad-lain/README.md +0 -192
  70. package/.claude/skills/r2mo-rad-lain/examples/argument-parsing.js +0 -154
  71. package/.claude/skills/r2mo-rad-lain/examples/file-operations.js +0 -182
  72. package/.claude/skills/r2mo-rad-lain/file-utils-api.md +0 -281
  73. package/.claude/skills/r2mo-rad-lain/menu-api.md +0 -187
  74. package/.claude/skills/r2mo-rad-lain/scripts/file-utils.js +0 -223
  75. package/.claude/skills/r2mo-rad-lain/scripts/menu.js +0 -289
  76. package/.claude/skills/r2mo-rad-lain/scripts/yaml-parser.js +0 -209
  77. package/.claude/skills/r2mo-rad-lain/templates/command.json.template +0 -13
  78. package/.claude/skills/r2mo-rad-lain/templates/executor.js.template +0 -32
  79. package/.claude/skills/r2mo-rad-lain/templates/interactive-menu.js.template +0 -221
  80. package/src/_template/LAIN/.momo/advanced/actor.md +0 -42
  81. package/src/_template/LAIN/.momo/advanced/refer.json +0 -46
  82. package/src/_template/LAIN/.momo/scripts/submodule-clean.sh +0 -56
  83. package/src/_template/LAIN/changes/proposal.md +0 -39
  84. package/src/_template/LAIN/changes/tasks/task-detail.md +0 -45
  85. package/src/_template/LAIN/changes/tasks.md +0 -49
  86. package/src/_template/LAIN/execute/admin-n-f-dashboard.md +0 -53
  87. package/src/_template/LAIN/execute/admin-n-f-form.md +0 -51
  88. package/src/_template/LAIN/execute/admin-n-f-home.md +0 -49
  89. package/src/_template/LAIN/execute/admin-n-f-list.md +0 -52
  90. package/src/_template/LAIN/execute/admin-n-f-login.md +0 -56
  91. package/src/_template/LAIN/specification/project-model.md +0 -13
  92. package/src/_template/LAIN/specification/project.md +0 -73
  93. package/src/_template/LAIN/specification/requirement.md +0 -25
  94. package/src/commander/skills.json +0 -20
@@ -0,0 +1,7 @@
1
+ {
2
+ "name": "Retro Windows",
3
+ "version": "1.2.2",
4
+ "minAppVersion": "1.0.0",
5
+ "author": "codeisconfusing",
6
+ "authorUrl": "https://github.com/codeisconfusing"
7
+ }
@@ -0,0 +1,582 @@
1
+ /* Base variables and common elements */
2
+ body {
3
+ /*--font-text-theme: "MS Sans Serif", Arial, sans-serif;*/
4
+ --window-border: 2px solid #000;
5
+
6
+ /* Header colors - shared across themes */
7
+ --h1-color: #8470A6; /* purple */
8
+ --h2-color: #507A9E; /* blue */
9
+ --h3-color: #5A8D76; /* green */
10
+ --h4-color: #A67A5B; /* orange */
11
+ --h5-color: #A19C6C; /* yellow */
12
+ --h6-color: #6C8299; /* steel blue */
13
+
14
+ /* Formatting colors - shared but overridden per theme */
15
+ --bold-color: #61a181; /* green */
16
+ --italic-color: #95c2f0; /* blue */
17
+ --text-highlight-bg: #746119; /* yellow */
18
+ }
19
+
20
+ /* Light theme variables */
21
+ .theme-light {
22
+ --window-shadow: inset -1px -1px #0a0a0a, inset 1px 1px #dfdfdf, inset -2px -2px grey, inset 2px 2px #fff;
23
+
24
+ /* Background colors */
25
+ --background-primary: #ffffff; /* Note background - off-white */
26
+ --background-secondary: #ececec; /* Sidebar background - light gray */
27
+ --background-secondary-alt: #d4d0c8; /* Classic Win 3.1 gray for panels */
28
+ --background-tertiary: #c0c0c0; /* Classic Win 3.1 gray for UI elements */
29
+
30
+ /* Title bar */
31
+ --titlebar-background: #000080; /* Classic Win 3.1 blue */
32
+ --titlebar-text: #ffffff; /* White text on blue */
33
+
34
+ /* Text colors */
35
+ --text-normal: #000000; /* Black text for good contrast */
36
+ --text-muted: #333333; /* Dark gray for secondary text */
37
+ --text-faint: #666666; /* Medium gray for tertiary text */
38
+
39
+ /* Interactive elements */
40
+ --text-accent: #008015; /* Win 3.1 blue for accents */
41
+ --interactive-normal: #d4d0c8; /* Folder/button background */
42
+ --interactive-hover: #e6e6e6; /* Hover state */
43
+ --interactive-accent: #000080; /* Selected state - Win 3.1 blue */
44
+ --interactive-accent-hover: #0000aa; /* Hover on selected - darker blue */
45
+
46
+ /* Buttons */
47
+ --button-background: #d4d0c8; /* Classic Win 3.1 folder color */
48
+ --button-text: #000000; /* Black text on buttons */
49
+ }
50
+
51
+ /* Dark theme variables */
52
+ .theme-dark {
53
+ --window-shadow: inset -1px -1px #3a3a3a, inset 1px 1px #888888, inset -2px -2px #555, inset 2px 2px #666;
54
+
55
+ /* Background colors */
56
+ --background-primary: #1e1e1e; /* Note background - dark gray */
57
+ --background-secondary: #2d2d2d; /* Sidebar background - darker gray */
58
+ --background-secondary-alt: #3a3a3a; /* Dark version of Win 3.1 gray for panels */
59
+ --background-tertiary: #444444; /* Dark version of Win 3.1 gray for UI elements */
60
+
61
+ /* Title bar */
62
+ --titlebar-background: #000080; /* Classic Win 3.1 blue */
63
+ --titlebar-text: #ffffff; /* White text on blue */
64
+
65
+ /* Text colors */
66
+ --text-normal: #e0e0e0; /* Light gray text for good contrast */
67
+ --text-muted: #b0b0b0; /* Medium gray for secondary text */
68
+ --text-faint: #888888; /* Light gray for tertiary text */
69
+
70
+ /* Interactive elements */
71
+ --text-accent: #8cb4ff; /* Lighter blue for accents */
72
+ --interactive-normal: #3a3a3a; /* Folder/button background */
73
+ --interactive-hover: #505050; /* Hover state */
74
+ --interactive-accent: #4f6fb0; /* Selected state - darker Win 3.1 blue */
75
+ --interactive-accent-hover: #6989d0; /* Hover on selected - lighter blue */
76
+
77
+ /* Buttons */
78
+ --button-background: #3a3a3a; /* Dark version of Win 3.1 folder color */
79
+ --button-text: #e0e0e0; /* Light text on buttons */
80
+
81
+ /* Dark theme specific overrides */
82
+ --bold-color: #7fc9a0; /* green */
83
+ --italic-color: #7fb0e0; /* blue */
84
+ --text-highlight-bg: #5a4820; /* yellow */
85
+ }
86
+
87
+ /* Make windows look like Windows 3.1 windows - shared styling */
88
+ .workspace-leaf {
89
+ border: var(--window-border);
90
+ box-shadow: var(--window-shadow);
91
+ }
92
+
93
+ .workspace-leaf-header {
94
+ background-color: var(--titlebar-background);
95
+ color: var(--titlebar-text);
96
+ font-weight: bold;
97
+ height: 20px;
98
+ padding: 2px 4px;
99
+ }
100
+
101
+ /* Buttons with 3D effect - theme-specific styling */
102
+ button,
103
+ .clickable-icon {
104
+ background-color: var(--button-background);
105
+ color: var(--button-text);
106
+ border: 1px solid #000;
107
+ padding: 2px 6px;
108
+ }
109
+
110
+ /* Light theme button styling */
111
+ .theme-light button,
112
+ .theme-light .clickable-icon {
113
+ box-shadow: inset -1px -1px #0a0a0a, inset 1px 1px #fff, inset -2px -2px grey, inset 2px 2px #dfdfdf;
114
+ }
115
+
116
+ .theme-light button:active,
117
+ .theme-light .clickable-icon:active {
118
+ box-shadow: inset 1px 1px #0a0a0a, inset -1px -1px #fff, inset 2px 2px grey, inset -2px -2px #dfdfdf;
119
+ }
120
+
121
+ /* Dark theme button styling */
122
+ .theme-dark button,
123
+ .theme-dark .clickable-icon {
124
+ box-shadow: inset -1px -1px #0a0a0a, inset 1px 1px #666, inset -2px -2px #333, inset 2px 2px #555;
125
+ }
126
+
127
+ .theme-dark button:active,
128
+ .theme-dark .clickable-icon:active {
129
+ box-shadow: inset 1px 1px #0a0a0a, inset -1px -1px #666, inset 2px 2px #333, inset -2px -2px #555;
130
+ }
131
+
132
+ /* Ensure icons in buttons have good contrast - shared */
133
+ button svg,
134
+ .clickable-icon svg {
135
+ color: var(--button-text);
136
+ }
137
+
138
+ /* Improve contrast for hover states - shared */
139
+ /*button:hover,
140
+ .clickable-icon:hover {
141
+ background-color: var(--interactive-hover);
142
+ box-shadow: inset 1px 1px var(--window-shadow);
143
+ }*/
144
+
145
+ /* Hover States - Shared */
146
+ button:hover {
147
+ background-color: var(--interactive-hover);
148
+ }
149
+ .cm-link:hover {
150
+ text-decoration: underline; /* For links */
151
+ color: var(--text-accent-hover); /* Optional: Add a hover color for links */
152
+ }
153
+
154
+ /* Light Theme Specific Hover */
155
+ .theme-light button:hover {
156
+ box-shadow: inset -1px -1px #0a0a0a, inset 1px 1px #dfdfdf;
157
+ }
158
+
159
+ /* Dark Theme Specific Hover */
160
+ .theme-dark button:hover {
161
+ box-shadow: inset -1px -1px #3a3a3a, inset 1px 1px #888888;
162
+ }
163
+
164
+
165
+ /* Editor area styling - shared */
166
+ .cm-s-obsidian {
167
+ font-family: "Courier New", monospace;
168
+ line-height: 1.5;
169
+ color: var(--text-normal);
170
+ background-color: var(--background-primary);
171
+ }
172
+
173
+ /* Headings - shared */
174
+ /*.cm-header {
175
+ font-weight: bold;
176
+ color: var(--titlebar-background);
177
+ }*/
178
+
179
+ /* Headings - Shared (Reading and Editing Modes) */
180
+ .cm-header, /* Editing Mode */
181
+ h1, h2, h3, h4, h5, h6 { /* Reading Mode */
182
+ font-weight: bold;
183
+ }
184
+
185
+ /* Reading Mode Specific (HTML Headings) */
186
+ h1 {
187
+ color: var(--h1-color);
188
+ }
189
+ h2 {
190
+ color: var(--h2-color);
191
+ }
192
+ h3 {
193
+ color: var(--h3-color);
194
+ }
195
+ h4 {
196
+ color: var(--h4-color);
197
+ }
198
+ h5 {
199
+ color: var(--h5-color);
200
+ }
201
+ h6 {
202
+ color: var(--h6-color);
203
+ }
204
+
205
+ /* Editing Mode Specific (CodeMirror Headings) */
206
+ .cm-header-1 {
207
+ color: var(--h1-color);
208
+ }
209
+ .cm-header-2 {
210
+ color: var(--h2-color);
211
+ }
212
+ .cm-header-3 {
213
+ color: var(--h3-color);
214
+ }
215
+ .cm-header-4 {
216
+ color: var(--h4-color);
217
+ }
218
+ .cm-header-5 {
219
+ color: var(--h5-color);
220
+ }
221
+ .cm-header-6 {
222
+ color: var(--h6-color);
223
+ }
224
+
225
+
226
+ /* Links - theme specific */
227
+ .theme-light .cm-link,
228
+ .theme-light .cm-hmd-internal-link {
229
+ color: #0000ff;
230
+ text-decoration: underline;
231
+ }
232
+
233
+ .theme-dark .cm-link,
234
+ .theme-dark .cm-hmd-internal-link {
235
+ color: #8cb4ff;
236
+ text-decoration: underline;
237
+ }
238
+
239
+ /* Dropdown menus - shared */
240
+ .menu {
241
+ background-color: var(--background-tertiary);
242
+ border: var(--window-border);
243
+ box-shadow: var(--window-shadow);
244
+ }
245
+
246
+ .menu-item {
247
+ color: var(--text-normal);
248
+ padding: 4px 8px;
249
+ }
250
+
251
+ .menu-item:hover {
252
+ background-color: var(--titlebar-background);
253
+ color: var(--titlebar-text);
254
+ }
255
+
256
+ /* Separator in menus - shared */
257
+ .menu-separator {
258
+ border-bottom: 1px solid #808080;
259
+ margin: 4px 0;
260
+ }
261
+
262
+ /* Modal dialogs - shared */
263
+ .is-phone .modal .modal-title {
264
+ display: block;
265
+ text-align: center;
266
+ overflow: hidden;
267
+ text-overflow: ellipsis;
268
+ white-space: nowrap;
269
+ max-width: 70vw;
270
+ }
271
+
272
+ .modal {
273
+ background-color: var(--background-tertiary);
274
+ border: var(--window-border);
275
+ box-shadow: var(--window-shadow);
276
+ }
277
+
278
+ .modal-title {
279
+ color: var(--titlebar-text);
280
+ margin-left: auto;
281
+ margin-right: auto;
282
+ padding: 4px 8px;
283
+ font-weight: bold;
284
+ }
285
+
286
+ .modal-content {
287
+ padding: 8px;
288
+ color: var(--text-normal);
289
+ }
290
+
291
+ /* Dialog buttons at bottom - shared */
292
+ .modal-button-container {
293
+ display: flex;
294
+ justify-content: flex-end;
295
+ gap: 8px;
296
+ padding: 8px;
297
+ }
298
+
299
+ /* Status bar at the bottom - shared */
300
+ .status-bar {
301
+ background-color: var(--background-tertiary);
302
+ border-top: 1px solid #808080;
303
+ color: var(--text-normal);
304
+ height: 22px;
305
+ padding: 0 4px;
306
+ }
307
+
308
+ .status-bar-item {
309
+ padding: 0 4px;
310
+ }
311
+
312
+ /* Status bar buttons - shared */
313
+ .status-bar-item button {
314
+ height: 18px;
315
+ padding: 0 4px;
316
+ }
317
+
318
+ /* Windows 3.1 style scrollbars - shared structure */
319
+ ::-webkit-scrollbar {
320
+ width: 16px;
321
+ height: 16px;
322
+ }
323
+
324
+ ::-webkit-scrollbar-track {
325
+ background-color: var(--background-tertiary);
326
+ }
327
+
328
+ ::-webkit-scrollbar-thumb {
329
+ background-color: var(--background-tertiary);
330
+ border: 1px solid #000;
331
+ }
332
+
333
+ ::-webkit-scrollbar-button {
334
+ background-color: var(--background-tertiary);
335
+ border: 1px solid #000;
336
+ width: 16px;
337
+ height: 16px;
338
+ }
339
+
340
+ /* Theme-specific scrollbar styling */
341
+ /* Light Scrollbars */
342
+
343
+
344
+
345
+ .theme-light ::-webkit-scrollbar-thumb,
346
+ .theme-light ::-webkit-scrollbar-button {
347
+ box-shadow: inset -1px -1px #0a0a0a, inset 1px 1px #fff, inset -2px -2px grey, inset 2px 2px #dfdfdf;
348
+ }
349
+
350
+ .theme-light ::-webkit-scrollbar-button:active {
351
+ box-shadow: inset 1px 1px #0a0a0a, inset -1px -1px #fff, inset 2px 2px grey, inset -2px -2px #dfdfdf;
352
+ }
353
+
354
+ .theme-dark ::-webkit-scrollbar-thumb,
355
+ .theme-dark ::-webkit-scrollbar-button {
356
+ box-shadow: inset -1px -1px #0a0a0a, inset 1px 1px #666, inset -2px -2px #333, inset 2px 2px #555;
357
+ }
358
+
359
+ .theme-dark ::-webkit-scrollbar-button:active {
360
+ box-shadow: inset 1px 1px #0a0a0a, inset -1px -1px #666, inset 2px 2px #333, inset -2px -2px #555;
361
+ }
362
+
363
+ /* Light Tabs styling */
364
+ .theme-light .workspace-tab-header {
365
+ background-color: var(--background-tertiary);
366
+ color: var(--text-normal);
367
+ border: 1px solid #000;
368
+ box-shadow: inset -1px -1px #0a0a0a, inset 1px 1px #fff, inset -2px -2px grey, inset 2px 2px #dfdfdf;
369
+ border-radius: 5px; /* Ensure all corners align */
370
+ }
371
+
372
+ .theme-light .workspace-tab-header.is-active {
373
+ background-color: var(--background-secondary);
374
+ box-shadow: inset 1px 1px #0a0a0a, inset -1px -1px #fff, inset 2px 2px grey, inset -2px -2px #dfdfdf;
375
+ border-radius: 5px;
376
+ }
377
+
378
+ /* Dark Tabs styling */
379
+ .theme-dark .workspace-tab-header {
380
+ background-color: var(--background-tertiary);
381
+ color: var(--text-normal);
382
+ border: 1px solid #000;
383
+ box-shadow: inset -1px -1px #0a0a0a, inset 1px 1px #666, inset -2px -2px #333, inset 2px 2px #555;
384
+ border-radius: 5px;
385
+ }
386
+
387
+ .theme-dark .workspace-tab-header.is-active {
388
+ background-color: var(--background-secondary);
389
+ box-shadow: inset 1px 1px #0a0a0a, inset -1px -1px #666, inset 2px 2px #333, inset -2px -2px #555;
390
+ border-radius: 5px;
391
+ }
392
+
393
+ /* fix bottom edge of active tabs https://github.com/codeisconfusing/retro-windows-obsidian/issues/1
394
+ & https://www.reddit.com/r/ObsidianMD/comments/1j2ulat/comment/mfzfqrt/
395
+ thanks u/AccomplishedLife7782 / https://github.com/Gonzalo-D-Sales */
396
+ .workspace-split.mod-root .workspace-tab-header::before,
397
+ .workspace-split.mod-root .workspace-tab-header::after {
398
+ display: none;
399
+ }
400
+
401
+ /* Code blocks - theme specific */
402
+ /*.theme-light pre,
403
+ .theme-light code {
404
+ background-color: #f0f0f0;
405
+ color: #0b6e4f;
406
+ border: 1px solid #c0c0c0;
407
+ font-family: "Courier New", monospace;
408
+ }
409
+
410
+ .theme-light .cm-inline-code {
411
+ background-color: #f0f0f0;
412
+ color: #0b6e4f;
413
+ padding: 0 4px;
414
+ border-radius: 3px;
415
+ }
416
+
417
+ .theme-dark pre,
418
+ .theme-dark code {
419
+ background-color: #2a2a2a;
420
+ color: #6fcf9f;
421
+ border: 1px solid #555555;
422
+ font-family: "Courier New", monospace;
423
+ }
424
+
425
+ .theme-dark .cm-inline-code {
426
+ background-color: #2a2a2a;
427
+ color: #6fcf9f;
428
+ padding: 0 4px;
429
+ border-radius: 3px;
430
+ }*/
431
+
432
+ /* Code blocks - theme specific */
433
+ .theme-light pre,
434
+ .theme-light code {
435
+ background-color: #f0f0f0;
436
+ color: #0b6e4f;
437
+ border: 1px solid #c0c0c0;
438
+ font-family: "Courier New", monospace;
439
+ border-radius: 5px;
440
+ }
441
+
442
+ .theme-light .cm-inline-code {
443
+ background-color: #f0f0f0;
444
+ color: #0b6e4f;
445
+ border-radius: 3px;
446
+ }
447
+
448
+ .theme-dark pre,
449
+ .theme-dark code {
450
+ background-color: #2a2a2a;
451
+ color: #6fcf9f;
452
+ border: 1px solid #555555;
453
+ font-family: "Courier New", monospace;
454
+ border-radius: 5px;
455
+ }
456
+
457
+ .theme-dark .cm-inline-code {
458
+ background-color: #2a2a2a;
459
+ color: #6fcf9f;
460
+ border-radius: 3px;
461
+ }
462
+
463
+
464
+ /* Properties mods - theme specific */
465
+ .theme-light .metadata-container {
466
+ border: 1px solid #000000;
467
+ padding: 1em 1em 0.5em 2em;
468
+ border-radius: 5px;
469
+ background: #d4d0c8
470
+ }
471
+
472
+ /* Properties mods for dark theme */
473
+ .theme-dark .metadata-container {
474
+ border: 1px solid #666666;
475
+ padding: 1em 1em 0.5em 2em;
476
+ border-radius: 5px;
477
+ background: #3a3a3a;
478
+ }
479
+
480
+ /* Dataview column wrapping and coloring - theme specific */
481
+ .theme-light .table-view-table>tbody>tr>td {
482
+ white-space: pre-wrap !important;
483
+ background-color: #ccccff1f !important;
484
+ padding: 10px !important;
485
+ }
486
+
487
+ .theme-dark .table-view-table>tbody>tr>td {
488
+ white-space: pre-wrap !important;
489
+ background-color: #33335f !important;
490
+ padding: 10px !important;
491
+ }
492
+
493
+ /* Light theme folder colors */
494
+ .theme-light {
495
+ --folder-color-1: #965D5D; /* red */
496
+ --folder-color-2: #8470A6; /* purple */
497
+ --folder-color-3: #507A9E; /* blue */
498
+ --folder-color-4: #5A8D76; /* green */
499
+ --folder-color-5: #A19C6C; /* yellow */
500
+ --folder-color-6: #A67A5B; /* orange */
501
+ --folder-color-7: #96707E; /* pink */
502
+ --folder-color-8: #5B8B9E; /* sky blue */
503
+ --folder-color-9: #6B8C6B; /* mint */
504
+ --folder-color-10: #8B7E6D; /* taupe */
505
+ --folder-color-11: #8D6B83; /* mauve */
506
+ --folder-color-12: #6C8299; /* steel blue */
507
+ }
508
+
509
+ /* Dark theme folder colors - brightened for better contrast */
510
+ .theme-dark {
511
+ --folder-color-1: #c78080; /* red */
512
+ --folder-color-2: #a992d0; /* purple */
513
+ --folder-color-3: #7aa3c9; /* blue */
514
+ --folder-color-4: #7fb59a; /* green */
515
+ --folder-color-5: #c9c48e; /* yellow */
516
+ --folder-color-6: #d19e7d; /* orange */
517
+ --folder-color-7: #c093a6; /* pink */
518
+ --folder-color-8: #7db3c9; /* sky blue */
519
+ --folder-color-9: #8eb98e; /* mint */
520
+ --folder-color-10: #b3a68f; /* taupe */
521
+ --folder-color-11: #b38da8; /* mauve */
522
+ --folder-color-12: #8eabc0; /* steel blue */
523
+ }
524
+
525
+ /* Shared folder styling structure */
526
+ .nav-files-container > div > .nav-folder:nth-child(6n + 1) { --folder-color: var(--folder-color-1); }
527
+ .nav-files-container > div > .nav-folder:nth-child(6n + 2) { --folder-color: var(--folder-color-2); }
528
+ .nav-files-container > div > .nav-folder:nth-child(6n + 3) { --folder-color: var(--folder-color-3); }
529
+ .nav-files-container > div > .nav-folder:nth-child(6n + 4) { --folder-color: var(--folder-color-4); }
530
+ .nav-files-container > div > .nav-folder:nth-child(6n + 5) { --folder-color: var(--folder-color-5); }
531
+ .nav-files-container > div > .nav-folder:nth-child(6n + 6) { --folder-color: var(--folder-color-6); }
532
+ .nav-files-container > div > .nav-folder:nth-child(12n + 7) { --folder-color: var(--folder-color-7); }
533
+ .nav-files-container > div > .nav-folder:nth-child(12n + 8) { --folder-color: var(--folder-color-8); }
534
+ .nav-files-container > div > .nav-folder:nth-child(12n + 9) { --folder-color: var(--folder-color-9); }
535
+ .nav-files-container > div > .nav-folder:nth-child(12n + 10) { --folder-color: var(--folder-color-10); }
536
+ .nav-files-container > div > .nav-folder:nth-child(12n + 11) { --folder-color: var(--folder-color-11); }
537
+ .nav-files-container > div > .nav-folder:nth-child(12n + 12) { --folder-color: var(--folder-color-12); }
538
+
539
+ /* Theme-specific folder borders */
540
+ .theme-light .nav-files-container > div > .nav-folder {
541
+ border: 1px solid #c0c0c0;
542
+ border-left: 4px solid var(--folder-color);
543
+ border-radius: var(--radius-s);
544
+ }
545
+
546
+ .theme-dark .nav-files-container > div > .nav-folder {
547
+ border: 1px solid #555555;
548
+ border-left: 4px solid var(--folder-color);
549
+ border-radius: var(--radius-s);
550
+ }
551
+
552
+ .nav-files-container > div > .nav-folder + .nav-folder {
553
+ margin-top: var(--size-2-2);
554
+ }
555
+
556
+ .nav-folder-title {
557
+ color: var(--folder-color);
558
+ font-weight: var(--font-bold);
559
+ }
560
+
561
+ /* TABLES */
562
+ th {
563
+ border: 1px solid var(--background-tertiary) !important;
564
+ }
565
+
566
+ td {
567
+ border: 1px solid var(--background-tertiary) !important;
568
+ }
569
+
570
+ thead {
571
+ border-bottom: 4px solid var(--background-tertiary);
572
+ }
573
+
574
+ /* Calendar Styling */
575
+ #calendar-container .day:hover {
576
+ background-color: var(--interactive-hover);
577
+ }
578
+ #calendar-container .today {
579
+ font-weight: 700;
580
+ background-color: var(--interactive-accent);
581
+ color: var(--titlebar-text);
582
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "RetroOS 98",
3
+ "version": "0.0.8",
4
+ "minAppVersion": "1.3.0",
5
+ "author": "ThePharaohArt",
6
+ "authorUrl": "https://github.com/ThePharaohArt/"
7
+ }
8
+
9
+