2017-01-13 23:07:43 -07:00
|
|
|
// Copyright 2017 Zack Guo <zack.y.guo@gmail.com>. All rights reserved.
|
2015-03-20 14:21:50 -06:00
|
|
|
// Use of this source code is governed by a MIT license that can
|
|
|
|
// be found in the LICENSE file.
|
|
|
|
|
2015-03-11 14:15:59 -06:00
|
|
|
package termui
|
|
|
|
|
2019-01-23 21:12:10 -07:00
|
|
|
var StandardColors = []Color{
|
|
|
|
ColorRed,
|
|
|
|
ColorGreen,
|
|
|
|
ColorYellow,
|
|
|
|
ColorBlue,
|
|
|
|
ColorMagenta,
|
|
|
|
ColorCyan,
|
|
|
|
ColorWhite,
|
2015-03-11 14:15:59 -06:00
|
|
|
}
|
|
|
|
|
2019-01-23 21:12:10 -07:00
|
|
|
var StandardStyles = []Style{
|
|
|
|
NewStyle(ColorRed),
|
|
|
|
NewStyle(ColorGreen),
|
|
|
|
NewStyle(ColorYellow),
|
|
|
|
NewStyle(ColorBlue),
|
|
|
|
NewStyle(ColorMagenta),
|
|
|
|
NewStyle(ColorCyan),
|
|
|
|
NewStyle(ColorWhite),
|
2015-03-11 14:15:59 -06:00
|
|
|
}
|
|
|
|
|
2019-01-23 21:12:10 -07:00
|
|
|
type RootTheme struct {
|
|
|
|
Default Style
|
|
|
|
|
|
|
|
Block BlockTheme
|
|
|
|
|
|
|
|
BarChart BarChartTheme
|
|
|
|
Gauge GaugeTheme
|
|
|
|
LineChart LineChartTheme
|
|
|
|
List ListTheme
|
|
|
|
Paragraph ParagraphTheme
|
|
|
|
PieChart PieChartTheme
|
|
|
|
Sparkline SparklineTheme
|
|
|
|
StackedBarChart StackedBarChartTheme
|
|
|
|
Tab TabTheme
|
|
|
|
Table TableTheme
|
|
|
|
}
|
2015-03-11 14:15:59 -06:00
|
|
|
|
2019-01-23 21:12:10 -07:00
|
|
|
type BlockTheme struct {
|
|
|
|
Title Style
|
|
|
|
Border Style
|
2015-03-20 03:35:09 -06:00
|
|
|
}
|
|
|
|
|
2019-01-23 21:12:10 -07:00
|
|
|
type BarChartTheme struct {
|
|
|
|
Bars []Color
|
|
|
|
Nums []Style
|
|
|
|
Labels []Style
|
2015-03-20 03:35:09 -06:00
|
|
|
}
|
|
|
|
|
2019-01-23 21:12:10 -07:00
|
|
|
type GaugeTheme struct {
|
|
|
|
Bar Color
|
|
|
|
Label Style
|
2015-03-11 14:15:59 -06:00
|
|
|
}
|
2019-01-23 21:12:10 -07:00
|
|
|
|
|
|
|
type LineChartTheme struct {
|
|
|
|
Lines []Color
|
|
|
|
Axes Color
|
2015-09-21 01:11:58 -06:00
|
|
|
}
|
|
|
|
|
2019-01-23 21:12:10 -07:00
|
|
|
type ListTheme struct {
|
|
|
|
Text Style
|
2015-09-21 01:11:58 -06:00
|
|
|
}
|
|
|
|
|
2019-01-23 21:12:10 -07:00
|
|
|
type ParagraphTheme struct {
|
|
|
|
Text Style
|
2015-09-21 01:11:58 -06:00
|
|
|
}
|
|
|
|
|
2019-01-23 21:12:10 -07:00
|
|
|
type PieChartTheme struct {
|
|
|
|
Slices []Color
|
|
|
|
}
|
2015-09-21 01:11:58 -06:00
|
|
|
|
2019-01-23 21:12:10 -07:00
|
|
|
type SparklineTheme struct {
|
|
|
|
Title Style
|
|
|
|
Line Color
|
|
|
|
}
|
2015-09-21 01:11:58 -06:00
|
|
|
|
2019-01-23 21:12:10 -07:00
|
|
|
type StackedBarChartTheme struct {
|
|
|
|
Bars []Color
|
|
|
|
Nums []Style
|
|
|
|
Labels []Style
|
|
|
|
}
|
|
|
|
|
|
|
|
type TabTheme struct {
|
|
|
|
Active Style
|
|
|
|
Inactive Style
|
|
|
|
}
|
2015-09-21 01:11:58 -06:00
|
|
|
|
2019-01-23 21:12:10 -07:00
|
|
|
type TableTheme struct {
|
|
|
|
Text Style
|
2015-09-21 01:11:58 -06:00
|
|
|
}
|
2016-02-04 23:20:46 -07:00
|
|
|
|
2019-01-23 21:12:10 -07: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),
|
|
|
|
},
|
|
|
|
|
|
|
|
StackedBarChart: StackedBarChartTheme{
|
|
|
|
Bars: StandardColors,
|
|
|
|
Nums: StandardStyles,
|
|
|
|
Labels: StandardStyles,
|
|
|
|
},
|
|
|
|
|
|
|
|
Gauge: GaugeTheme{
|
|
|
|
Bar: ColorWhite,
|
|
|
|
Label: NewStyle(ColorWhite),
|
|
|
|
},
|
|
|
|
|
|
|
|
Sparkline: SparklineTheme{
|
|
|
|
Line: ColorBlack,
|
|
|
|
Title: NewStyle(ColorBlue),
|
|
|
|
},
|
|
|
|
|
|
|
|
LineChart: LineChartTheme{
|
|
|
|
Lines: StandardColors,
|
|
|
|
Axes: ColorBlue,
|
|
|
|
},
|
|
|
|
|
|
|
|
Table: TableTheme{
|
|
|
|
Text: NewStyle(ColorWhite),
|
|
|
|
},
|
|
|
|
|
|
|
|
Tab: TabTheme{
|
|
|
|
Active: NewStyle(ColorRed),
|
|
|
|
Inactive: NewStyle(ColorWhite),
|
|
|
|
},
|
2016-02-04 23:20:46 -07:00
|
|
|
}
|