mirror of
https://github.com/anotherhadi/spilltea.git
synced 2026-05-20 17:52:33 +02:00
e8e64eff12
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
21 lines
663 B
Go
21 lines
663 B
Go
package config
|
|
|
|
type Colors struct {
|
|
Base00 string `mapstructure:"base00"`
|
|
Base01 string `mapstructure:"base01"`
|
|
Base02 string `mapstructure:"base02"`
|
|
Base03 string `mapstructure:"base03"`
|
|
Base04 string `mapstructure:"base04"`
|
|
Base05 string `mapstructure:"base05"`
|
|
Base06 string `mapstructure:"base06"`
|
|
Base07 string `mapstructure:"base07"`
|
|
Base08 string `mapstructure:"base08"`
|
|
Base09 string `mapstructure:"base09"`
|
|
Base0A string `mapstructure:"base0a"`
|
|
Base0B string `mapstructure:"base0b"`
|
|
Base0C string `mapstructure:"base0c"`
|
|
Base0D string `mapstructure:"base0d"`
|
|
Base0E string `mapstructure:"base0e"`
|
|
Base0F string `mapstructure:"base0f"`
|
|
}
|