You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TUI-Kanban supports multiple color themes to match your terminal preferences and improve readability. You can change the theme by editing your config file.
153
+
154
+
### Available Themes
155
+
156
+
-**high-contrast** (Default) - Bright, bold colors for maximum visibility on any terminal theme
157
+
-**classic** - Traditional color scheme with improved contrast over the original
158
+
-**solarized-dark** - Popular Solarized palette designed for reduced eye strain
159
+
-**gruvbox** - Warm, retro color scheme with earthy tones
160
+
-**nord** - Cool, arctic-inspired colors from the Nord palette
161
+
162
+
### Changing Your Theme
163
+
164
+
Edit your configuration file at `~/.config/tui-kanban/config.json` (Linux/macOS) or `%APPDATA%\tui-kanban\config.json` (Windows):
165
+
166
+
```json
167
+
{
168
+
"theme": "nord",
169
+
"default_project": "Work"
170
+
}
171
+
```
172
+
173
+
Available theme names: `high-contrast`, `classic`, `solarized-dark`, `gruvbox`, `nord`
120
174
175
+
Changes take effect the next time you launch tui-kanban. If the theme name is invalid or not specified, it will default to `high-contrast`.
0 commit comments