fix(theme): improve theme color contrast for macOS Terminal.app (#21175)

This commit is contained in:
Mark McLaughlin
2026-03-05 15:33:49 -08:00
committed by GitHub
parent 7ec477d40d
commit 6aa6630137
43 changed files with 1629 additions and 1668 deletions
@@ -2206,7 +2206,8 @@ describe('InputPrompt', () => {
// Check that all lines, including the empty one, are rendered.
// This implicitly tests that the Box wrapper provides height for the empty line.
expect(frame).toContain('hello');
expect(frame).toContain(`world${chalk.inverse(' ')}`);
expect(frame).toContain('world');
expect(frame).toContain(chalk.inverse(' '));
const outputLines = frame.trim().split('\n');
// The number of lines should be 2 for the border plus 3 for the content.