@qrafty-ai/opencode-kanban 0.2.0-linux-x64 → 0.2.1-darwin-arm64
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -88,8 +88,10 @@ cargo build --release
|
|
|
88
88
|
|
|
89
89
|
```bash
|
|
90
90
|
opencode-kanban --theme default
|
|
91
|
+
opencode-kanban --theme light
|
|
91
92
|
opencode-kanban --theme high-contrast
|
|
92
93
|
opencode-kanban --theme mono
|
|
94
|
+
opencode-kanban --theme custom
|
|
93
95
|
```
|
|
94
96
|
|
|
95
97
|
Each project uses its own SQLite file and board state.
|
|
@@ -133,11 +135,88 @@ For full, current bindings, use the in-app help overlay (`?`).
|
|
|
133
135
|
## Configuration
|
|
134
136
|
|
|
135
137
|
- Settings file: `~/.config/opencode-kanban/settings.toml`
|
|
136
|
-
- Legacy keybindings file (deprecated): `~/.config/opencode-kanban/keybindings.toml`
|
|
137
138
|
- Project databases (Linux default): `~/.local/share/opencode-kanban/*.sqlite`
|
|
138
139
|
|
|
139
140
|
The app creates config/data files on demand.
|
|
140
141
|
|
|
142
|
+
### Theme configuration options
|
|
143
|
+
|
|
144
|
+
Theme values live in `~/.config/opencode-kanban/settings.toml`.
|
|
145
|
+
|
|
146
|
+
Top-level option:
|
|
147
|
+
|
|
148
|
+
- `theme`: `default` | `light` | `high-contrast` | `mono` | `custom`
|
|
149
|
+
|
|
150
|
+
When `theme = "custom"`, configure semantic tokens with these sections:
|
|
151
|
+
|
|
152
|
+
- `[custom_theme]`
|
|
153
|
+
- `inherit`: `default` | `light` | `high-contrast` | `mono`
|
|
154
|
+
- `[custom_theme.base]`
|
|
155
|
+
- `canvas`, `surface`, `text`, `text_muted`, `header`, `accent`, `danger`
|
|
156
|
+
- `[custom_theme.interactive]`
|
|
157
|
+
- `focus`, `selected_bg`, `selected_border`, `border`
|
|
158
|
+
- `[custom_theme.status]`
|
|
159
|
+
- `running`, `waiting`, `idle`, `dead`, `broken`, `unavailable`
|
|
160
|
+
- `[custom_theme.tile]`
|
|
161
|
+
- `repo`, `branch`, `todo`
|
|
162
|
+
- `[custom_theme.category]`
|
|
163
|
+
- `primary`, `secondary`, `tertiary`, `success`, `warning`, `danger`
|
|
164
|
+
- `[custom_theme.dialog]`
|
|
165
|
+
- `surface`, `input_bg`, `button_bg`, `button_fg`
|
|
166
|
+
|
|
167
|
+
Example:
|
|
168
|
+
|
|
169
|
+
```toml
|
|
170
|
+
theme = "custom"
|
|
171
|
+
|
|
172
|
+
[custom_theme]
|
|
173
|
+
inherit = "light"
|
|
174
|
+
|
|
175
|
+
[custom_theme.base]
|
|
176
|
+
canvas = "#E2E7EE"
|
|
177
|
+
surface = "#ECF1F7"
|
|
178
|
+
text = "#222A3A"
|
|
179
|
+
text_muted = "#4E596D"
|
|
180
|
+
header = "#2F66BF"
|
|
181
|
+
accent = "#0E7490"
|
|
182
|
+
danger = "#B02E24"
|
|
183
|
+
|
|
184
|
+
[custom_theme.interactive]
|
|
185
|
+
focus = "#2F66BF"
|
|
186
|
+
selected_bg = "#D6DFED"
|
|
187
|
+
selected_border = "#477ACD"
|
|
188
|
+
border = "#A5B2C6"
|
|
189
|
+
|
|
190
|
+
[custom_theme.status]
|
|
191
|
+
running = "#278449"
|
|
192
|
+
waiting = "#AB781A"
|
|
193
|
+
idle = "#5D687A"
|
|
194
|
+
dead = "#B02E24"
|
|
195
|
+
broken = "#B02E24"
|
|
196
|
+
unavailable = "#B02E24"
|
|
197
|
+
|
|
198
|
+
[custom_theme.tile]
|
|
199
|
+
repo = "#086678"
|
|
200
|
+
branch = "#926614"
|
|
201
|
+
todo = "#4E596D"
|
|
202
|
+
|
|
203
|
+
[custom_theme.category]
|
|
204
|
+
primary = "#2F66BF"
|
|
205
|
+
secondary = "#AB501F"
|
|
206
|
+
tertiary = "#6949AB"
|
|
207
|
+
success = "#278449"
|
|
208
|
+
warning = "#AB781A"
|
|
209
|
+
danger = "#B02E24"
|
|
210
|
+
|
|
211
|
+
[custom_theme.dialog]
|
|
212
|
+
surface = "#ECF1F7"
|
|
213
|
+
input_bg = "#E0E6EF"
|
|
214
|
+
button_bg = "#CDD8E7"
|
|
215
|
+
button_fg = "#FFFFFF"
|
|
216
|
+
```
|
|
217
|
+
|
|
218
|
+
- Accepted color format: `#RRGGBB` (hex only).
|
|
219
|
+
|
|
141
220
|
## Troubleshooting
|
|
142
221
|
|
|
143
222
|
- `tmux is required but not available`:
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qrafty-ai/opencode-kanban",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1-darwin-arm64",
|
|
4
4
|
"description": "Terminal kanban board for managing OpenCode tmux sessions",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"os": [
|
|
7
|
-
"
|
|
7
|
+
"darwin"
|
|
8
8
|
],
|
|
9
9
|
"cpu": [
|
|
10
|
-
"
|
|
10
|
+
"arm64"
|
|
11
11
|
],
|
|
12
12
|
"files": [
|
|
13
13
|
"vendor"
|
package/vendor/{x86_64-unknown-linux-gnu → aarch64-apple-darwin}/opencode-kanban/opencode-kanban
RENAMED
|
index dcf7ae4..0e3feb7 100755
|
|
|
Binary file
|