tt/themes.go
Aetnaeus 4eae6a11f4 Various improvements.
- Added -showwpm
 - Added -g
 - Added -noreport
 - Updated generated themes.
 - Improved automatic line wrapping.
 - Fixed timer bug.
 - Moved -o to -oneshot
 - The exit code now corresponds to the exit action
 - Updated documentation.
2020-12-28 01:04:29 -05:00

24 lines
436 B
Go

package main
//Themes defined here take precedence over their generated counterparts and should be manually curated.
var themes = map[string]map[string]string{
"default": {
"fgcol": "#8C8C8C",
"bgcol": "#282828",
"hicol2": "#805b13",
"hicol3": "#b4801b",
"hicol": "#ffffff",
"errcol": "#a10705",
},
}
func init() {
for k, v := range generatedThemes {
if _, exists := themes[k]; !exists {
themes[k] = v
}
}
}