A complete terminal theme definition.
const myTheme: Theme = { name: 'my-dark-theme', colors: { background: '#1a1b26', foreground: '#a9b1d6', // ... other colors },}; Copy
const myTheme: Theme = { name: 'my-dark-theme', colors: { background: '#1a1b26', foreground: '#a9b1d6', // ... other colors },};
Color definitions for the theme
Unique name for the theme
A complete terminal theme definition.
Example