Skip to content
This repository has been archived by the owner on Feb 10, 2023. It is now read-only.

Commit

Permalink
fix theme toml mapping
Browse files Browse the repository at this point in the history
closes #207
  • Loading branch information
SoMuchForSubtlety committed Mar 12, 2022
1 parent 436dccf commit 0e1dc0a
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions internal/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,21 +40,21 @@ type ConversionConfig struct {
}

type Theme struct {
BackgroundColor string `json:"background_color"`
BorderColor string `json:"border_color"`
CategoryNodeColor string `json:"category_node_color"`
FolderNodeColor string `json:"folder_node_color"`
ItemNodeColor string `json:"item_node_color"`
ActionNodeColor string `json:"action_node_color"`
LoadingColor string `json:"loading_color"`
LiveColor string `json:"live_color"`
UpdateColor string `json:"update_color"`
NoContentColor string `json:"no_content_color"`
InfoColor string `json:"info_color"`
ErrorColor string `json:"error_color"`
TerminalAccentColor string `json:"terminal_accent_color"`
TerminalTextColor string `json:"terminal_text_color"`
MultiCommandColor string `json:"multi_command_color"`
BackgroundColor string `toml:"background_color"`
BorderColor string `toml:"border_color"`
CategoryNodeColor string `toml:"category_node_color"`
FolderNodeColor string `toml:"folder_node_color"`
ItemNodeColor string `toml:"item_node_color"`
ActionNodeColor string `toml:"action_node_color"`
LoadingColor string `toml:"loading_color"`
LiveColor string `toml:"live_color"`
UpdateColor string `toml:"update_color"`
NoContentColor string `toml:"no_content_color"`
InfoColor string `toml:"info_color"`
ErrorColor string `toml:"error_color"`
TerminalAccentColor string `toml:"terminal_accent_color"`
TerminalTextColor string `toml:"terminal_text_color"`
MultiCommandColor string `toml:"multi_command_color"`
}

//go:embed default-config.toml
Expand Down

0 comments on commit 0e1dc0a

Please # to comment.