TerminalTheme constructor
const
TerminalTheme({
- String lightBackground = '#ffffff',
- String lightForeground = '#0f172a',
- String lightCursor = '#0284c7',
- String lightSelection = 'rgba(2, 132, 199, 0.22)',
- String darkBackground = '#020617',
- String darkForeground = '#f8fafc',
- String darkCursor = '#38bdf8',
- String darkSelection = 'rgba(56, 189, 248, 0.28)',
Creates a terminal color palette.
Implementation
const TerminalTheme({
this.lightBackground = '#ffffff',
this.lightForeground = '#0f172a',
this.lightCursor = '#0284c7',
this.lightSelection = 'rgba(2, 132, 199, 0.22)',
this.darkBackground = '#020617',
this.darkForeground = '#f8fafc',
this.darkCursor = '#38bdf8',
this.darkSelection = 'rgba(56, 189, 248, 0.28)',
});