chore: remove unused exports and redundant hook files (#18681)

This commit is contained in:
Sandy Tao
2026-02-09 15:01:23 -08:00
committed by GitHub
parent ef957a368d
commit 14219bb57d
5 changed files with 1 additions and 142 deletions
+1 -33
View File
@@ -4,7 +4,7 @@
* SPDX-License-Identifier: Apache-2.0
*/
import { lightTheme, darkTheme, ansiTheme } from './theme.js';
import { lightTheme, darkTheme } from './theme.js';
export interface SemanticColors {
text: {
@@ -101,35 +101,3 @@ export const darkSemanticColors: SemanticColors = {
warning: darkTheme.AccentYellow,
},
};
export const ansiSemanticColors: SemanticColors = {
text: {
primary: ansiTheme.Foreground,
secondary: ansiTheme.Gray,
link: ansiTheme.AccentBlue,
accent: ansiTheme.AccentPurple,
response: ansiTheme.Foreground,
},
background: {
primary: ansiTheme.Background,
diff: {
added: ansiTheme.DiffAdded,
removed: ansiTheme.DiffRemoved,
},
},
border: {
default: ansiTheme.Gray,
focused: ansiTheme.AccentBlue,
},
ui: {
comment: ansiTheme.Comment,
symbol: ansiTheme.Gray,
dark: ansiTheme.DarkGray,
gradient: ansiTheme.GradientColors,
},
status: {
error: ansiTheme.AccentRed,
success: ansiTheme.AccentGreen,
warning: ansiTheme.AccentYellow,
},
};