package app // Shared SGR style sequences used by the palette, tab bar, sidebar, and // status line so all the chrome reads with a consistent look. 256-color // codes degrade to "no color" on terminals that don't support them. const ( styleReset = "\x1b[0m" styleBold = "\x1b[1m" styleDim = "\x1b[2m" styleBorder = "\x1b[38;5;240m" styleAccent = "\x1b[38;5;75m" styleHint = "\x1b[38;5;244m" styleActive = "\x1b[1;38;5;253m" styleError = "\x1b[38;5;203m" )