diff options
| author | David Hill <[email protected]> | 2026-02-17 18:39:21 +0000 |
|---|---|---|
| committer | David Hill <[email protected]> | 2026-02-17 18:39:21 +0000 |
| commit | 7379903568552be7dcfe846856f6cdd547bd97f0 (patch) | |
| tree | 5f569719481bf0413e5c8e7bf61f44fb3c37ae28 /packages/ui/src/theme | |
| parent | a685e7a805454110d92ed4da5a3799a15ea1bcb9 (diff) | |
| download | opencode-7379903568552be7dcfe846856f6cdd547bd97f0.tar.gz opencode-7379903568552be7dcfe846856f6cdd547bd97f0.zip | |
tui: improve modified file visibility and button spacing
- Replace warning yellow with distinct orange color for modified files in git diff indicators
- Increase button padding for better visual balance in session header and status popover
Diffstat (limited to 'packages/ui/src/theme')
| -rw-r--r-- | packages/ui/src/theme/resolve.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/ui/src/theme/resolve.ts b/packages/ui/src/theme/resolve.ts index 2e9c3a521..f098e8028 100644 --- a/packages/ui/src/theme/resolve.ts +++ b/packages/ui/src/theme/resolve.ts @@ -240,7 +240,7 @@ export function resolveThemeVariant(variant: ThemeVariant, isDark: boolean): Res tokens["icon-diff-add-active"] = diffAdd[isDark ? 10 : 11] tokens["icon-diff-delete-base"] = diffDelete[isDark ? 8 : 9] tokens["icon-diff-delete-hover"] = diffDelete[isDark ? 9 : 10] - tokens["icon-diff-modified-base"] = tokens["icon-warning-base"] + tokens["icon-diff-modified-base"] = isDark ? "#ffba92" : "#FF8C00" tokens["syntax-comment"] = "var(--text-weak)" tokens["syntax-regexp"] = "var(--text-base)" |
