pluidr 0.7.6 → 0.8.1

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 (88) hide show
  1. package/LICENSE +20 -20
  2. package/README.md +409 -399
  3. package/bin/pluidr.js +3 -3
  4. package/package.json +1 -1
  5. package/src/cli/commands/doctor.js +137 -134
  6. package/src/cli/commands/init.js +146 -47
  7. package/src/cli/commands/launch.js +101 -50
  8. package/src/cli/commands/theme.js +91 -0
  9. package/src/cli/commands/theme.test.js +28 -0
  10. package/src/cli/commands/uninstall.js +109 -90
  11. package/src/cli/commands/update.js +9 -9
  12. package/src/cli/index.js +63 -57
  13. package/src/cli/wizard/selectModelTier.js +40 -40
  14. package/src/core/agentPromptWriter.js +49 -32
  15. package/src/core/agentPromptWriter.test.js +56 -56
  16. package/src/core/animation.js +84 -0
  17. package/src/core/animation.test.js +118 -0
  18. package/src/core/backup.js +46 -46
  19. package/src/core/commandsWriter.js +26 -0
  20. package/src/core/commandsWriter.test.js +29 -0
  21. package/src/core/configBuilder.js +32 -32
  22. package/src/core/configBuilder.test.js +93 -93
  23. package/src/core/configWriter.js +10 -10
  24. package/src/core/configWriter.test.js +1 -1
  25. package/src/core/identityHeader.js +8 -8
  26. package/src/core/paths.js +13 -11
  27. package/src/core/paths.test.js +33 -29
  28. package/src/core/pluginWriter.js +43 -29
  29. package/src/core/skillsWriter.js +21 -0
  30. package/src/core/skillsWriter.test.js +30 -0
  31. package/src/core/squeezeInstaller.js +158 -158
  32. package/src/core/squeezeInstaller.test.js +79 -79
  33. package/src/core/themeWriter.js +18 -4
  34. package/src/core/themeWriter.test.js +2 -2
  35. package/src/core/tuiConfigWriter.js +22 -3
  36. package/src/core/tuiConfigWriter.test.js +11 -5
  37. package/src/core/version.js +8 -8
  38. package/src/core/versionCheck.js +44 -44
  39. package/src/plugins/README.md +57 -68
  40. package/src/plugins/pluidr-squeeze.js +77 -77
  41. package/src/templates/agent-prompts/analyze.txt +49 -0
  42. package/src/templates/agent-prompts/builder.txt +10 -0
  43. package/src/templates/agent-prompts/compose.txt +50 -0
  44. package/src/templates/agent-prompts/debug.txt +49 -0
  45. package/src/templates/agent-prompts/explorer.txt +10 -0
  46. package/src/templates/agent-prompts/hierarchy.txt +101 -95
  47. package/src/templates/agent-prompts/reporter.txt +10 -0
  48. package/src/templates/agent-prompts/verifier.txt +10 -0
  49. package/src/templates/commands/squeeze-dashboard.md +5 -0
  50. package/src/templates/commands/squeeze-health.md +10 -0
  51. package/src/templates/commands/squeeze-quick.md +10 -0
  52. package/src/templates/model-defaults.json +59 -73
  53. package/src/templates/opencode.config.json +243 -572
  54. package/src/templates/skills/brooks-lint-rca/SKILL.md +48 -0
  55. package/src/templates/skills/codebase-fact-finding/SKILL.md +39 -0
  56. package/src/templates/skills/diff-review/SKILL.md +42 -0
  57. package/src/templates/skills/general-coding/SKILL.md +44 -0
  58. package/src/templates/skills/minimal-fixing/SKILL.md +25 -0
  59. package/src/templates/skills/plan-checking/SKILL.md +33 -0
  60. package/src/templates/{agent-prompts/patcher.txt → skills/ponytail-patching/SKILL.md} +20 -20
  61. package/src/templates/skills/prd-formatting/SKILL.md +45 -0
  62. package/src/templates/skills/refactoring-patterns/SKILL.md +37 -0
  63. package/src/templates/skills/security-auditing/SKILL.md +35 -0
  64. package/src/templates/skills/security-remediation/SKILL.md +37 -0
  65. package/src/templates/skills/summary-reporting/SKILL.md +83 -0
  66. package/src/templates/skills/test-assurance/SKILL.md +48 -0
  67. package/src/templates/skills/test-mocking-strategy/SKILL.md +18 -0
  68. package/src/templates/skills/ui-design-audit/SKILL.md +23 -0
  69. package/src/templates/skills/ui-design-system/SKILL.md +37 -0
  70. package/src/templates/{agent-prompts/tracer.txt → skills/wstg-recon/SKILL.md} +33 -33
  71. package/src/templates/themes/pluidr-colorful.json +241 -0
  72. package/src/templates/themes/{pluidr-contrast.json → pluidr-dark.json} +68 -68
  73. package/src/templates/themes/pluidr-light.json +241 -0
  74. package/src/templates/agent-prompts/auditor.txt +0 -20
  75. package/src/templates/agent-prompts/coder.txt +0 -88
  76. package/src/templates/agent-prompts/compose-reporter.txt +0 -55
  77. package/src/templates/agent-prompts/composer.txt +0 -414
  78. package/src/templates/agent-prompts/debug-reporter.txt +0 -65
  79. package/src/templates/agent-prompts/debugger.txt +0 -149
  80. package/src/templates/agent-prompts/fixer.txt +0 -66
  81. package/src/templates/agent-prompts/inspector.txt +0 -79
  82. package/src/templates/agent-prompts/plan-checker.txt +0 -45
  83. package/src/templates/agent-prompts/plan-writer.txt +0 -57
  84. package/src/templates/agent-prompts/probe-reporter.txt +0 -62
  85. package/src/templates/agent-prompts/prober.txt +0 -93
  86. package/src/templates/agent-prompts/researcher.txt +0 -48
  87. package/src/templates/agent-prompts/reviewer.txt +0 -57
  88. package/src/templates/agent-prompts/tester.txt +0 -66
@@ -0,0 +1,37 @@
1
+ ---
2
+ name: ui-design-system
3
+ description: Playbook and guidelines for creating visually rich, innovative, and modern user interfaces (design system, spacing, typography, and micro-interactions).
4
+ ---
5
+
6
+ # UI Design System & Guidelines
7
+
8
+ ## 1. Typography & Hierarchy
9
+ - **Primary Font**: Use modern, clean typography (e.g., from Google Fonts like `Inter` for body/ui elements and `Outfit` or `Space Grotesk` for headings).
10
+ - **Scale**:
11
+ - Headings (`h1`, `h2`): Semibold/Bold, tighter line-height (`1.2`), tracking tight.
12
+ - Body: Regular, line-height `1.5` or `1.6`, tracking normal.
13
+ - Labels/Buttons: Medium, uppercase or medium weight, tracking wide.
14
+
15
+ ## 2. Spacing & Grid System
16
+ - **Spacing Scale**: Enforce a strict spacing scale based on multiples of 4px/8px (e.g., Tailwind's `p-2`, `p-4`, `p-6`, `p-8` scales). Never use random "magic numbers" for margins or padding.
17
+ - **Grids & Flexbox**: Always align elements using responsive flexbox or grid layouts. Center content cleanly, keep columns proportional, and ensure proper padding at container edges.
18
+
19
+ ## 3. Visual Depth & Aesthetics
20
+ - **Elevations & Depth**: Use subtle border strokes (e.g. `rgba(255,255,255,0.08)` in dark mode) paired with soft shadows to define elevation.
21
+ - **Gradients**: Utilize smooth, harmonious color gradients for key accent elements, headers, and call-to-action buttons.
22
+ - **Glassmorphism**: When creating modern panels or modals, prefer semi-transparent backgrounds with background blur (e.g., `backdrop-filter: blur(12px)`).
23
+ - **Color Accents**: Avoid primary saturated primaries (e.g., plain `#ff0000`, `#0000ff`). Use tailored palettes (e.g. HSL tailored neon/pastel gradients, sleek slate/charcoal backgrounds).
24
+
25
+ ## 4. Micro-Interactions & Transitions
26
+ - **Interactive States**: Every interactive element (buttons, cards, inputs) must have explicit `:hover`, `:focus-visible`, and `:active` styles.
27
+ - **Transitions**: Apply smooth transition effects (`transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1)`) to avoid sudden visual snapping on hover or state change.
28
+
29
+ ## 5. Mobile-First Responsiveness
30
+ - Start layouts mobile-first. Apply breakpoint prefixes (`sm:`, `md:`, `lg:`) to scale grids, font sizes, and container widths gracefully to desktop viewports.
31
+
32
+ ## 6. Mockup & Prototype Delivery Protocol
33
+ When tasked with generating a visual layout, mockup, or interface prototype:
34
+ - **No ASCII Drawing**: Do not output textual ASCII grids or drawings.
35
+ - **Self-Contained File**: Generate a complete, valid HTML5 file.
36
+ - **Embedded CSS**: Include a `<style>` block containing fonts (Inter/Outfit), layout variables, component styles, states (:hover, :focus), and smooth transition curves.
37
+ - **Embedded JS**: Include a `<script>` block implementing DOM interactions (tab switching, theme toggles, modal open/close) so it works as a fully responsive, interactive live prototype.
@@ -1,33 +1,33 @@
1
- # Role: Tracer Subagent
2
-
3
- You are the **Tracer** subagent for the **Prober** agent. You perform attack surface reconnaissance and trace vulnerability paths through code analysis and tooling.
4
-
5
- ## Scope of Work
6
- - Scan the directory structure and codebase to identify potential entry points, routes, API endpoints, and security weaknesses.
7
- - Perform a breadth-first assessment: map outer interfaces and entry points before analyzing deep business logic.
8
- - Trace data flows from untrusted inputs to dangerous sinks (e.g., raw SQL query calls, shell execution points, eval functions).
9
- - Guide your checks using WSTG (Web Security Testing Guide) methodologies and secure code review practices.
10
-
11
- ## Tracer MUST NOT
12
- - Propose remedies, write code fixes, or modify files.
13
- - Decide remediation priorities.
14
-
15
- ## Tracer MUST ONLY
16
- - Read files, run bash commands (recon/grep/ast tools), search directories.
17
- - Classify findings strictly into the target output format.
18
-
19
- ## Output Format
20
- Your output must be structured exactly as follows:
21
-
22
- ```markdown
23
- ### Confirmed Vulnerabilities
24
- 1. **[OWASP Category / WSTG ID]** Description of vulnerability path.
25
- - **Location:** [file path & line numbers]
26
- - **Data Flow:** [input -> path -> sink]
27
-
28
- ### Suspected Vulnerabilities
29
- - List potential issues requiring manual verification.
30
-
31
- ### Quality & Decay Risks
32
- - List security-adjacent decay risks (e.g., hardcoded secrets, missing input validation rules, lack of trust boundaries).
33
- ```
1
+ ---
2
+ name: wstg-recon
3
+ description: Scan project directory structure, map attack surfaces, and trace vulnerability data-flow paths using secure code review and WSTG principles.
4
+ ---
5
+
6
+ # WSTG Threat Model & Vulnerability Tracing
7
+
8
+ ## Scope of Work
9
+ - Scan the directory structure and codebase to identify potential entry points, routes, API endpoints, and security weaknesses.
10
+ - Perform a breadth-first assessment: map outer interfaces and entry points before analyzing deep business logic.
11
+ - Trace data flows from untrusted inputs to dangerous sinks (e.g., raw SQL query calls, shell execution points, eval functions).
12
+ - Guide your checks using WSTG (Web Security Testing Guide) methodologies and secure code review practices.
13
+
14
+ ## Hard Rules
15
+ - Focus on locating vulnerability paths. Do NOT propose remedies, write code fixes, or modify files.
16
+ - Do NOT decide remediation priorities.
17
+ - Classify findings strictly into the target output format.
18
+
19
+ ## Mandatory Output Schema
20
+ Your output must be structured exactly as follows:
21
+
22
+ ```markdown
23
+ ### Confirmed Vulnerabilities
24
+ 1. **[OWASP Category / WSTG ID]** Description of vulnerability path.
25
+ - **Location:** [file path & line numbers]
26
+ - **Data Flow:** [input -> path -> sink]
27
+
28
+ ### Suspected Vulnerabilities
29
+ - List potential issues requiring manual verification.
30
+
31
+ ### Quality & Decay Risks
32
+ - List security-adjacent decay risks (e.g., hardcoded secrets, missing input validation rules, lack of trust boundaries).
33
+ ```
@@ -0,0 +1,241 @@
1
+ {
2
+ "$schema": "https://opencode.ai/theme.json",
3
+ "theme": {
4
+ "primary": {
5
+ "dark": "#EAB9F9",
6
+ "light": "#8b5cf6"
7
+ },
8
+ "secondary": {
9
+ "dark": "#8EE4F9",
10
+ "light": "#06b6d4"
11
+ },
12
+ "accent": {
13
+ "dark": "#EAB9F9",
14
+ "light": "#8b5cf6"
15
+ },
16
+ "error": {
17
+ "dark": "#F47189",
18
+ "light": "#ef4444"
19
+ },
20
+ "warning": {
21
+ "dark": "#FF9A6B",
22
+ "light": "#f59e0b"
23
+ },
24
+ "success": {
25
+ "dark": "#7CF89B",
26
+ "light": "#10b981"
27
+ },
28
+ "info": {
29
+ "dark": "#80BDFF",
30
+ "light": "#3b82f6"
31
+ },
32
+ "text": {
33
+ "dark": "#EDE7FE",
34
+ "light": "#1e1b4b"
35
+ },
36
+ "textMuted": {
37
+ "dark": "#A79BCF",
38
+ "light": "#6366f1"
39
+ },
40
+ "background": {
41
+ "dark": "#25213B",
42
+ "light": "#fcfbfe"
43
+ },
44
+ "backgroundPanel": {
45
+ "dark": "#3B355F",
46
+ "light": "#f3f0ff"
47
+ },
48
+ "backgroundElement": {
49
+ "dark": "#3B355F",
50
+ "light": "#e8e2fe"
51
+ },
52
+ "border": {
53
+ "dark": "#4C425C",
54
+ "light": "#ddd6fe"
55
+ },
56
+ "borderActive": {
57
+ "dark": "#8876A7",
58
+ "light": "#8b5cf6"
59
+ },
60
+ "borderSubtle": {
61
+ "dark": "#4C425C",
62
+ "light": "#e8e2fe"
63
+ },
64
+ "diffAdded": {
65
+ "dark": "#8BF9A6",
66
+ "light": "#10b981"
67
+ },
68
+ "diffRemoved": {
69
+ "dark": "#F58095",
70
+ "light": "#ef4444"
71
+ },
72
+ "diffContext": {
73
+ "dark": "#8FC5FF",
74
+ "light": "#6366f1"
75
+ },
76
+ "diffAddedBg": {
77
+ "dark": "#2E3548",
78
+ "light": "#ecfdf5"
79
+ },
80
+ "diffRemovedBg": {
81
+ "dark": "#3D2D49",
82
+ "light": "#fef2f2"
83
+ },
84
+ "diffContextBg": {
85
+ "dark": "#2D2B69",
86
+ "light": "#f5f3ff"
87
+ },
88
+ "markdownText": {
89
+ "dark": "#EEE5FF",
90
+ "light": "#1e1b4b"
91
+ },
92
+ "markdownHeading": {
93
+ "dark": "#D5C2FF",
94
+ "light": "#6d28d9"
95
+ },
96
+ "markdownLink": {
97
+ "dark": "#9EA8FF",
98
+ "light": "#06b6d4"
99
+ },
100
+ "markdownLinkText": {
101
+ "dark": "#9EA8FF",
102
+ "light": "#06b6d4"
103
+ },
104
+ "markdownCode": {
105
+ "dark": "#A79BCF",
106
+ "light": "#4f46e5"
107
+ },
108
+ "markdownBlockQuote": {
109
+ "dark": "#9EA8FF",
110
+ "light": "#4f46e5"
111
+ },
112
+ "markdownStrong": {
113
+ "dark": "#FFD68F",
114
+ "light": "#8b5cf6"
115
+ },
116
+ "syntaxComment": {
117
+ "dark": "#7E7490",
118
+ "light": "#8b8599"
119
+ },
120
+ "syntaxKeyword": {
121
+ "dark": "#F9A4E2",
122
+ "light": "#d946ef"
123
+ },
124
+ "syntaxFunction": {
125
+ "dark": "#8EE4F9",
126
+ "light": "#06b6d4"
127
+ },
128
+ "syntaxVariable": {
129
+ "dark": "#EBEBFF",
130
+ "light": "#1e1b4b"
131
+ },
132
+ "syntaxString": {
133
+ "dark": "#D3F9B9",
134
+ "light": "#10b981"
135
+ },
136
+ "syntaxNumber": {
137
+ "dark": "#F9DEB9",
138
+ "light": "#f59e0b"
139
+ },
140
+ "syntaxType": {
141
+ "dark": "#8FA9FF",
142
+ "light": "#4f46e5"
143
+ },
144
+ "syntaxOperator": {
145
+ "dark": "#BDA5EE",
146
+ "light": "#8b5cf6"
147
+ },
148
+ "syntaxPunctuation": {
149
+ "dark": "#AFAFDF",
150
+ "light": "#4f46e5"
151
+ },
152
+ "inputBackground": {
153
+ "dark": "#000000",
154
+ "light": "#ffffff"
155
+ },
156
+ "InputBorder": {
157
+ "dark": "#101520",
158
+ "light": "#ddd6fe"
159
+ },
160
+ "InputBorderActive": {
161
+ "dark": "#ff7039",
162
+ "light": "#8b5cf6"
163
+ },
164
+ "inputPrompt": {
165
+ "dark": "#ff7039",
166
+ "light": "#8b5cf6"
167
+ },
168
+ "inputCursor": {
169
+ "dark": "#ff7039",
170
+ "light": "#8b5cf6"
171
+ },
172
+ "inputText": {
173
+ "dark": "#ffffff",
174
+ "light": "#1e1b4b"
175
+ },
176
+ "backgroundMenu": {
177
+ "dark": "#463E6F",
178
+ "light": "#f3f0ff"
179
+ },
180
+ "diffAddedLineNumberBg": {
181
+ "dark": "#364D54",
182
+ "light": "#d1fae5"
183
+ },
184
+ "diffHighlightAdded": {
185
+ "dark": "#8BF9A6",
186
+ "light": "#10b981"
187
+ },
188
+ "diffHighlightRemoved": {
189
+ "dark": "#F58095",
190
+ "light": "#ef4444"
191
+ },
192
+ "diffHunkHeader": {
193
+ "dark": "#DED3FD",
194
+ "light": "#6d28d9"
195
+ },
196
+ "diffLineNumber": {
197
+ "dark": "#8876A7",
198
+ "light": "#8b8599"
199
+ },
200
+ "diffRemovedLineNumberBg": {
201
+ "dark": "#503253",
202
+ "light": "#fee2e2"
203
+ },
204
+ "markdownCodeBlock": {
205
+ "dark": "#A79BCF",
206
+ "light": "#f3f0ff"
207
+ },
208
+ "markdownEmph": {
209
+ "dark": "#9EA8FF",
210
+ "light": "#db2777"
211
+ },
212
+ "markdownHorizontalRule": {
213
+ "dark": "#676798",
214
+ "light": "#ddd6fe"
215
+ },
216
+ "markdownImage": {
217
+ "dark": "#9EA8FF",
218
+ "light": "#db2777"
219
+ },
220
+ "markdownImageText": {
221
+ "dark": "#9EA8FF",
222
+ "light": "#db2777"
223
+ },
224
+ "markdownListEnumeration": {
225
+ "dark": "#CECEF8",
226
+ "light": "#6d28d9"
227
+ },
228
+ "markdownListItem": {
229
+ "dark": "#CECEF8",
230
+ "light": "#1e1b4b"
231
+ },
232
+ "placeholderText": {
233
+ "dark": "#7E7490",
234
+ "light": "#8b8599"
235
+ },
236
+ "selectedListItemText": {
237
+ "dark": "#EDE7FE",
238
+ "light": "#1e1b4b"
239
+ }
240
+ }
241
+ }
@@ -2,40 +2,40 @@
2
2
  "$schema": "https://opencode.ai/theme.json",
3
3
  "theme": {
4
4
  "primary": {
5
- "dark": "#ff7039",
6
- "light": "#ff7039"
5
+ "dark": "#00ffff",
6
+ "light": "#00ffff"
7
7
  },
8
8
  "secondary": {
9
- "dark": "#99f3ff",
10
- "light": "#99f3ff"
9
+ "dark": "#ff00ff",
10
+ "light": "#ff00ff"
11
11
  },
12
12
  "accent": {
13
- "dark": "#ff7039",
14
- "light": "#ff7039"
13
+ "dark": "#00ffff",
14
+ "light": "#00ffff"
15
15
  },
16
16
  "error": {
17
- "dark": "#fc5d7c",
18
- "light": "#fc5d7c"
17
+ "dark": "#ff0000",
18
+ "light": "#ff0000"
19
19
  },
20
20
  "warning": {
21
- "dark": "#ff669c",
22
- "light": "#ff669c"
21
+ "dark": "#ffcc00",
22
+ "light": "#ffcc00"
23
23
  },
24
24
  "success": {
25
- "dark": "#00cc76",
26
- "light": "#00cc76"
25
+ "dark": "#00ff00",
26
+ "light": "#00ff00"
27
27
  },
28
28
  "info": {
29
- "dark": "#00b4cc",
30
- "light": "#00b4cc"
29
+ "dark": "#00ffff",
30
+ "light": "#00ffff"
31
31
  },
32
32
  "text": {
33
33
  "dark": "#ffffff",
34
34
  "light": "#ffffff"
35
35
  },
36
36
  "textMuted": {
37
- "dark": "#888888",
38
- "light": "#888888"
37
+ "dark": "#7c7c7c",
38
+ "light": "#7c7c7c"
39
39
  },
40
40
  "background": {
41
41
  "dark": "#000000",
@@ -50,36 +50,36 @@
50
50
  "light": "#000000"
51
51
  },
52
52
  "border": {
53
- "dark": "#101520",
54
- "light": "#101520"
53
+ "dark": "#ffffff",
54
+ "light": "#ffffff"
55
55
  },
56
56
  "borderActive": {
57
- "dark": "#ff7039",
58
- "light": "#ff7039"
57
+ "dark": "#00ffff",
58
+ "light": "#00ffff"
59
59
  },
60
60
  "borderSubtle": {
61
- "dark": "#101520",
62
- "light": "#101520"
61
+ "dark": "#7c7c7c",
62
+ "light": "#7c7c7c"
63
63
  },
64
64
  "diffAdded": {
65
- "dark": "#00cc76",
66
- "light": "#00cc76"
65
+ "dark": "#00ff00",
66
+ "light": "#00ff00"
67
67
  },
68
68
  "diffRemoved": {
69
- "dark": "#fc5d7c",
70
- "light": "#fc5d7c"
69
+ "dark": "#ff0000",
70
+ "light": "#ff0000"
71
71
  },
72
72
  "diffContext": {
73
- "dark": "#888888",
74
- "light": "#888888"
73
+ "dark": "#7c7c7c",
74
+ "light": "#7c7c7c"
75
75
  },
76
76
  "diffAddedBg": {
77
- "dark": "#1a2618",
78
- "light": "#1a2618"
77
+ "dark": "#002200",
78
+ "light": "#002200"
79
79
  },
80
80
  "diffRemovedBg": {
81
- "dark": "#2a1a1a",
82
- "light": "#2a1a1a"
81
+ "dark": "#220000",
82
+ "light": "#220000"
83
83
  },
84
84
  "diffContextBg": {
85
85
  "dark": "#000000",
@@ -90,60 +90,60 @@
90
90
  "light": "#ffffff"
91
91
  },
92
92
  "markdownHeading": {
93
- "dark": "#ff669c",
94
- "light": "#ff669c"
93
+ "dark": "#00ffff",
94
+ "light": "#00ffff"
95
95
  },
96
96
  "markdownLink": {
97
- "dark": "#99f3ff",
98
- "light": "#99f3ff"
97
+ "dark": "#ff00ff",
98
+ "light": "#ff00ff"
99
99
  },
100
100
  "markdownLinkText": {
101
- "dark": "#ff7039",
102
- "light": "#ff7039"
101
+ "dark": "#00ffff",
102
+ "light": "#00ffff"
103
103
  },
104
104
  "markdownCode": {
105
- "dark": "#66ffbf",
106
- "light": "#66ffbf"
105
+ "dark": "#00ff00",
106
+ "light": "#00ff00"
107
107
  },
108
108
  "markdownBlockQuote": {
109
- "dark": "#888888",
110
- "light": "#888888"
109
+ "dark": "#7c7c7c",
110
+ "light": "#7c7c7c"
111
111
  },
112
112
  "markdownStrong": {
113
- "dark": "#ff7039",
114
- "light": "#ff7039"
113
+ "dark": "#00ffff",
114
+ "light": "#00ffff"
115
115
  },
116
116
  "syntaxComment": {
117
- "dark": "#888888",
118
- "light": "#888888"
117
+ "dark": "#7ca668",
118
+ "light": "#7ca668"
119
119
  },
120
120
  "syntaxKeyword": {
121
- "dark": "#ff669c",
122
- "light": "#ff669c"
121
+ "dark": "#569cd6",
122
+ "light": "#569cd6"
123
123
  },
124
124
  "syntaxFunction": {
125
- "dark": "#00b4cc",
126
- "light": "#00b4cc"
125
+ "dark": "#dcdcaa",
126
+ "light": "#dcdcaa"
127
127
  },
128
128
  "syntaxVariable": {
129
- "dark": "#ffb966",
130
- "light": "#ffb966"
129
+ "dark": "#9cdcfe",
130
+ "light": "#9cdcfe"
131
131
  },
132
132
  "syntaxString": {
133
- "dark": "#66ffbf",
134
- "light": "#66ffbf"
133
+ "dark": "#ce9178",
134
+ "light": "#ce9178"
135
135
  },
136
136
  "syntaxNumber": {
137
- "dark": "#a000ff",
138
- "light": "#a000ff"
137
+ "dark": "#b5cea8",
138
+ "light": "#b5cea8"
139
139
  },
140
140
  "syntaxType": {
141
- "dark": "#99f3ff",
142
- "light": "#99f3ff"
141
+ "dark": "#4ec9b0",
142
+ "light": "#4ec9b0"
143
143
  },
144
144
  "syntaxOperator": {
145
- "dark": "#ff669c",
146
- "light": "#ff669c"
145
+ "dark": "#ffffff",
146
+ "light": "#ffffff"
147
147
  },
148
148
  "syntaxPunctuation": {
149
149
  "dark": "#ffffff",
@@ -154,20 +154,20 @@
154
154
  "light": "#000000"
155
155
  },
156
156
  "InputBorder": {
157
- "dark": "#101520",
158
- "light": "#101520"
157
+ "dark": "#ffffff",
158
+ "light": "#ffffff"
159
159
  },
160
160
  "InputBorderActive": {
161
- "dark": "#ff7039",
162
- "light": "#ff7039"
161
+ "dark": "#00ffff",
162
+ "light": "#00ffff"
163
163
  },
164
164
  "inputPrompt": {
165
- "dark": "#ff7039",
166
- "light": "#ff7039"
165
+ "dark": "#00ffff",
166
+ "light": "#00ffff"
167
167
  },
168
168
  "inputCursor": {
169
- "dark": "#ff7039",
170
- "light": "#ff7039"
169
+ "dark": "#00ffff",
170
+ "light": "#00ffff"
171
171
  },
172
172
  "inputText": {
173
173
  "dark": "#ffffff",