/
githubmirror
/
tabby
Обзор
Документация
Войти
/
githubmirror
/
tabby
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tabby-core/src/api/theme.ts
28 строк
526 B
Utkarsh Adhran
Fix OSC 11 background color reporting (#11074)
08 май 2026, 00:46
Не верифицирован
08 май 2026, 00:46
78a5632
Код
Авторство
О чём код?
/** * Extend to add a custom CSS theme */ export abstract class Theme { name: string /** * Complete CSS stylesheet */ css: string terminalBackground: string macOSWindowButtonsInsetX?: number macOSWindowButtonsInsetY?: number followsColorScheme?: boolean } export interface TerminalColorScheme { name: string foreground: string background: string cursor: string colors: string[] selection?: string selectionForeground?: string cursorAccent?: string }