TerminalTheme constructor

const TerminalTheme({
  1. String lightBackground = '#ffffff',
  2. String lightForeground = '#0f172a',
  3. String lightCursor = '#0284c7',
  4. String lightSelection = 'rgba(2, 132, 199, 0.22)',
  5. String darkBackground = '#020617',
  6. String darkForeground = '#f8fafc',
  7. String darkCursor = '#38bdf8',
  8. 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)',
});