termui/theme.go

168 lines
2.7 KiB
Go
Raw Normal View History

2017-01-14 14:07:43 +08:00
// Copyright 2017 Zack Guo <zack.y.guo@gmail.com>. All rights reserved.
2015-03-21 04:21:50 +08:00
// Use of this source code is governed by a MIT license that can
// be found in the LICENSE file.
package termui
2019-01-24 12:12:10 +08:00
var StandardColors = []Color{
ColorRed,
ColorGreen,
ColorYellow,
ColorBlue,
ColorMagenta,
ColorCyan,
ColorWhite,
}
2019-01-24 12:12:10 +08:00
var StandardStyles = []Style{
NewStyle(ColorRed),
NewStyle(ColorGreen),
NewStyle(ColorYellow),
NewStyle(ColorBlue),
NewStyle(ColorMagenta),
NewStyle(ColorCyan),
NewStyle(ColorWhite),
}
2019-01-24 12:12:10 +08:00
type RootTheme struct {
Default Style
Block BlockTheme
BarChart BarChartTheme
Gauge GaugeTheme
Plot PlotTheme
2019-01-24 12:12:10 +08:00
List ListTheme
2019-04-16 19:57:06 +08:00
Tree TreeTheme
2019-01-24 12:12:10 +08:00
Paragraph ParagraphTheme
PieChart PieChartTheme
Sparkline SparklineTheme
StackedBarChart StackedBarChartTheme
Tab TabTheme
Table TableTheme
}
2019-01-24 12:12:10 +08:00
type BlockTheme struct {
Title Style
Border Style
}
2019-01-24 12:12:10 +08:00
type BarChartTheme struct {
Bars []Color
Nums []Style
Labels []Style
}
2019-01-24 12:12:10 +08:00
type GaugeTheme struct {
Bar Color
Label Style
}
2019-01-24 12:12:10 +08:00
type PlotTheme struct {
2019-01-24 12:12:10 +08:00
Lines []Color
Axes Color
2015-09-21 15:11:58 +08:00
}
2019-01-24 12:12:10 +08:00
type ListTheme struct {
Text Style
2015-09-21 15:11:58 +08:00
}
2019-04-16 19:57:06 +08:00
type TreeTheme struct {
Text Style
Collapse rune
Expand rune
}
2019-01-24 12:12:10 +08:00
type ParagraphTheme struct {
Text Style
2015-09-21 15:11:58 +08:00
}
2019-01-24 12:12:10 +08:00
type PieChartTheme struct {
Slices []Color
}
2015-09-21 15:11:58 +08:00
2019-01-24 12:12:10 +08:00
type SparklineTheme struct {
Title Style
Line Color
}
2015-09-21 15:11:58 +08:00
2019-01-24 12:12:10 +08:00
type StackedBarChartTheme struct {
Bars []Color
Nums []Style
Labels []Style
}
type TabTheme struct {
Active Style
Inactive Style
}
2015-09-21 15:11:58 +08:00
2019-01-24 12:12:10 +08:00
type TableTheme struct {
Text Style
2015-09-21 15:11:58 +08:00
}
2019-02-02 14:16:02 +08:00
// Theme holds the default Styles and Colors for all widgets.
// You can set default widget Styles by modifying the Theme before creating the widgets.
2019-01-24 12:12:10 +08:00
var Theme = RootTheme{
Default: NewStyle(ColorWhite),
Block: BlockTheme{
Title: NewStyle(ColorWhite),
Border: NewStyle(ColorWhite),
},
BarChart: BarChartTheme{
Bars: StandardColors,
Nums: StandardStyles,
Labels: StandardStyles,
},
Paragraph: ParagraphTheme{
Text: NewStyle(ColorWhite),
},
PieChart: PieChartTheme{
Slices: StandardColors,
},
List: ListTheme{
Text: NewStyle(ColorWhite),
},
2019-04-16 19:57:06 +08:00
Tree: TreeTheme{
Text: NewStyle(ColorWhite),
Collapse: COLLAPSED,
Expand: EXPANDED,
},
2019-01-24 12:12:10 +08:00
StackedBarChart: StackedBarChartTheme{
Bars: StandardColors,
Nums: StandardStyles,
Labels: StandardStyles,
},
Gauge: GaugeTheme{
Bar: ColorWhite,
Label: NewStyle(ColorWhite),
},
Sparkline: SparklineTheme{
Title: NewStyle(ColorWhite),
Line: ColorWhite,
2019-01-24 12:12:10 +08:00
},
Plot: PlotTheme{
2019-01-24 12:12:10 +08:00
Lines: StandardColors,
Axes: ColorWhite,
2019-01-24 12:12:10 +08:00
},
Table: TableTheme{
Text: NewStyle(ColorWhite),
},
Tab: TabTheme{
Active: NewStyle(ColorRed),
Inactive: NewStyle(ColorWhite),
},
}