// Nerd Font icons export const footerIcons = { model: "\udb81\udea9 ", directory: "\uf4d3 ", branch: "\uf126", worktree: "\u{f0405}", contextWindow: "\uee9c", } as const; // Git status display icons export const gitDisplayIcons = { staged: "●", unstaged: "~", untracked: "U", ahead: "↑", behind: "↓", } as const; export const gitStatusColors: Record = { staged: "success", unstaged: "warning", untracked: "dim", ahead: "info", behind: "warning", }; export const thinkingLevelColors: Record = { off: "dim", minimal: "thinkingMinimal", low: "thinkingLow", medium: "thinkingMedium", high: "thinkingHigh", xhigh: "thinkingXhigh", }; // Color function type used by formatting functions export type ColorFn = (token: string, s: string) => string;