mirror of
https://github.com/aditya-K2/gspt.git
synced 2026-01-09 22:08:04 -05:00
Use fg,bg in Color tags instead of foreground,background
This commit is contained in:
@@ -134,8 +134,8 @@ image_width_extra_y : -3.75
|
||||
# Color configuration has the following api
|
||||
colors:
|
||||
entity:
|
||||
fg: # foreground
|
||||
bg: # background
|
||||
fg: # foreground (Can be Hex value or a color name)
|
||||
bg: # background (Can be Hex value or a color name)
|
||||
bold: # true/false (boolean)
|
||||
italic: # true/false (boolean)
|
||||
|
||||
|
||||
@@ -18,8 +18,8 @@ var (
|
||||
)
|
||||
|
||||
type Color struct {
|
||||
Fg string `mapstructure:"foreground"`
|
||||
Bg string `mapstructure:"background"`
|
||||
Fg string `mapstructure:"fg"`
|
||||
Bg string `mapstructure:"bg"`
|
||||
Bold bool `mapstructure:"bold"`
|
||||
Italic bool `mapstructure:"italic"`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user