mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-05-16 22:03:05 +08:00
chore: update statusline ANSI color palette
- Replace blinking red (5;31m) with bold red (1;31m) for critical context bar - Replace cyan metrics (36m) with sky blue (38;5;117m) - Replace plain bold task (1m) with bold bright white (1;97m) - Update test assertion to match new bold red code
This commit is contained in:
committed by
Affaan Mustafa
parent
4093d1bb0b
commit
50ac061f9e
@@ -131,9 +131,9 @@ function runTests() {
|
||||
else failed++;
|
||||
|
||||
if (
|
||||
test('20% remaining contains red blink ANSI code', () => {
|
||||
test('20% remaining contains bold red ANSI code', () => {
|
||||
const bar = buildContextBar(20);
|
||||
assert.ok(bar.includes('\x1b[5;31m'), `Expected red blink ANSI in: ${JSON.stringify(bar)}`);
|
||||
assert.ok(bar.includes('\x1b[1;31m'), `Expected bold red ANSI in: ${JSON.stringify(bar)}`);
|
||||
})
|
||||
)
|
||||
passed++;
|
||||
|
||||
Reference in New Issue
Block a user