summaryrefslogtreecommitdiffstats
path: root/pkg/gui/theme.go
blob: dbc8b904b1b37c61244a8696621cf03f39997ed2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package gui

import (
	"github.com/jesseduffield/gocui"
)

// GetAttribute gets the gocui color attribute from the string
func (gui *Gui) GetAttribute(key string) gocui.Attribute {
	colorMap := map[string]gocui.Attribute{
		"default":   gocui.ColorDefault,
		"black":     gocui.ColorBlack,
		"red":       gocui.ColorRed,
		"green":     gocui.ColorGreen,
		"yellow":    gocui.ColorYellow,
		"blue":      gocui.ColorBlue,
		"magenta":   gocui.ColorMagenta,
		"cyan":      gocui.ColorCyan,
		"white":     gocui.ColorWhite,
		"bold":      gocui.AttrBold,
		"reverse":   gocui.AttrReverse,
		"underline": gocui.AttrUnderline,
	}
	value, present := colorMap[key]
	if present {
		return value
	}
	return gocui.ColorWhite
}

// GetColor bitwise OR's a list of attributes obtained via the given keys
func (gui *Gui) GetColor(keys []string) gocui.Attribute {
	var attribute gocui.Attribute
	for _, key := range keys {
		attribute = attribute | gui.GetAttribute(key)
	}
	return attribute
}

// GetOptionsPanelTextColor gets the color of the options panel text
func (gui *Gui) GetOptionsPanelTextColor() (gocui.Attribute, error) {
	userConfig := gui.Config.GetUserConfig()
	optionsColor := userConfig.GetStringSlice("gui.theme.optionsTextColor")
	return gui.GetColor(optionsColor), nil
}

// SetColorScheme sets the color scheme for the app based on the user config
func (gui *Gui) SetColorScheme() error {
	userConfig := gui.Config.GetUserConfig()
	activeBorderColor := userConfig.GetStringSlice("gui.theme.activeBorderColor")
	inactiveBorderColor := userConfig.GetStringSlice("gui.theme.inactiveBorderColor")
	gui.g.FgColor = gui.GetColor(inactiveBorderColor)
	gui.g.SelFgColor = gui.GetColor(activeBorderColor)
	return nil
}