A type for the terminal theme.

interface IThemeObject {
    background: string;
    cursor: string;
    cursorAccent: string;
    foreground: string;
    selectionBackground: string;
    selectionInactiveBackground: string;
}

Properties

background: string
cursor: string
cursorAccent: string
foreground: string
selectionBackground: string
selectionInactiveBackground: string