Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/tui.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,10 @@ const tui: TuiPlugin = async (api, rawOptions, _meta) => {
const pct = w.utilization
const reset = w.resetsAt
const label = windowLabel(key)
const pctColor = pct === null ? fg
const pctColor = pct === null ? valueFg
: pct >= 80 ? CLAUDE_ORANGE
: pct >= 51 ? "#F0A875"
: fg
: valueFg
const resetStr = formatRelativeTime(reset)
return (
<box height={1} flexDirection="row">
Expand Down
Loading