react-terminal-plus
Version:
A improved version of `react-terminal` - react-terminal-plus
46 lines (45 loc) • 1.21 kB
TypeScript
export type DefaultThemes = keyof typeof defaultThemes;
export declare const defaultThemes: {
dark: {
themeBGColor: string;
themeToolbarColor: string;
themeColor: string;
themePromptColor: string;
};
light: {
themeBGColor: string;
themeToolbarColor: string;
themeColor: string;
themePromptColor: string;
};
dracula: {
themeBGColor: string;
themeToolbarColor: string;
themeColor: string;
themePromptColor: string;
};
"material-dark": {
themeBGColor: string;
themeToolbarColor: string;
themeColor: string;
themePromptColor: string;
};
"material-light": {
themeBGColor: string;
themeToolbarColor: string;
themeColor: string;
themePromptColor: string;
};
"material-ocean": {
themeBGColor: string;
themeToolbarColor: string;
themeColor: string;
themePromptColor: string;
};
matrix: {
themeBGColor: string;
themeToolbarColor: string;
themeColor: string;
themePromptColor: string;
};
};