updated colors

This commit is contained in:
2025-09-11 08:40:16 +02:00
parent 55a8067be6
commit c421dd0fe7
3 changed files with 70 additions and 16 deletions

View File

@@ -12,12 +12,26 @@ var Cfg *Config
type Config struct {
General struct {
DeleteLogFileAtStart bool `yaml:"delete_log_file_at_start"`
LogToFile bool `yaml:"log_to_file"`
Callsign string `yaml:"callsign"`
LogLevel string `yaml:"log_level"`
TelnetServer bool `yaml:"telnetserver"`
FlexRadioSpot bool `yaml:"flexradiospot"`
DeleteLogFileAtStart bool `yaml:"delete_log_file_at_start"`
LogToFile bool `yaml:"log_to_file"`
Callsign string `yaml:"callsign"`
LogLevel string `yaml:"log_level"`
TelnetServer bool `yaml:"telnetserver"`
FlexRadioSpot bool `yaml:"flexradiospot"`
SpotColorNewEntity string `yaml:"spot_color_new_entity"`
BackgroundColorNewEntity string `yaml:"background_color_new_entity"`
SpotColorNewBand string `yaml:"spot_color_new_band"`
BackgroundColorNewBand string `yaml:"background_color_new_band"`
SpotColorNewMode string `yaml:"spot_color_new_mode"`
BackgroundColorNewMode string `yaml:"background_color_new_mode"`
SpotColorNewBandMode string `yaml:"spot_color_new_band_mode"`
BackgroundColorNewBandMode string `yaml:"background_color_new_band_mode"`
SpotColorNewSlot string `yaml:"spot_color_new_slot"`
BackgroundColorNewSlot string `yaml:"background_color_new_slot"`
SpotColorMyCallsign string `yaml:"spot_color_my_callsign"`
BackgroundColorMyCallsign string `yaml:"background_color_my_callsign"`
SpotColorWorked string `yaml:"spot_color_worked"`
BackgroundColorWorked string `yaml:"background_color_worked"`
} `yaml:"general"`
Database struct {