theme.go 284 B

123456789101112131415
  1. package config
  2. type ThemeConfig struct {
  3. Background string `toml:"background"`
  4. Border string `toml:"border"`
  5. Title string `toml:"title"`
  6. }
  7. func newThemeConfig() ThemeConfig {
  8. return ThemeConfig{
  9. Background: "black",
  10. Border: "white",
  11. Title: "white",
  12. }
  13. }