mirror of
https://github.com/eugeny/tabby
synced 2026-08-20 04:46:49 +00:00
17 lines
266 B
TypeScript
17 lines
266 B
TypeScript
/**
|
|
* Extend to add a custom CSS theme
|
|
*/
|
|
export abstract class Theme {
|
|
name: string
|
|
|
|
/**
|
|
* Complete CSS stylesheet
|
|
*/
|
|
css: string
|
|
|
|
terminalBackground: string
|
|
|
|
macOSWindowButtonsInsetX?: number
|
|
macOSWindowButtonsInsetY?: number
|
|
}
|