aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/gizak/termui/theme.go
blob: c8ad94756022f10c0505c06953cf3949acf3d308 (plain) (blame)
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// Copyright 2015 Zack Guo <gizak@icloud.com>. All rights reserved.
// Use of this source code is governed by a MIT license that can
// be found in the LICENSE file.

package termui

// A ColorScheme represents the current look-and-feel of the dashboard.
type ColorScheme struct {
    BodyBg            Attribute
    BlockBg           Attribute
    HasBorder         bool
    BorderFg          Attribute
    BorderBg          Attribute
    BorderLabelTextFg Attribute
    BorderLabelTextBg Attribute
    ParTextFg         Attribute
    ParTextBg         Attribute
    SparklineLine     Attribute
    SparklineTitle    Attribute
    GaugeBar          Attribute
    GaugePercent      Attribute
    LineChartLine     Attribute
    LineChartAxes     Attribute
    ListItemFg        Attribute
    ListItemBg        Attribute
    BarChartBar       Attribute
    BarChartText      Attribute
    BarChartNum       Attribute
    MBarChartBar      Attribute
    MBarChartText     Attribute
    MBarChartNum      Attribute
}

// default color scheme depends on the user's terminal setting.
var themeDefault = ColorScheme{HasBorder: true}

var themeHelloWorld = ColorScheme{
    BodyBg:            ColorBlack,
    BlockBg:           ColorBlack,
    HasBorder:         true,
    BorderFg:          ColorWhite,
    BorderBg:          ColorBlack,
    BorderLabelTextBg: ColorBlack,
    BorderLabelTextFg: ColorGreen,
    ParTextBg:         ColorBlack,
    ParTextFg:         ColorWhite,
    SparklineLine:     ColorMagenta,
    SparklineTitle:    ColorWhite,
    GaugeBar:          ColorRed,
    GaugePercent:      ColorWhite,
    LineChartLine:     ColorYellow | AttrBold,
    LineChartAxes:     ColorWhite,
    ListItemBg:        ColorBlack,
    ListItemFg:        ColorYellow,
    BarChartBar:       ColorRed,
    BarChartNum:       ColorWhite,
    BarChartText:      ColorCyan,
    MBarChartBar:      ColorRed,
    MBarChartNum:      ColorWhite,
    MBarChartText:     ColorCyan,
}

var theme = themeDefault // global dep

// Theme returns the currently used theme.
func Theme() ColorScheme {
    return theme
}

// SetTheme sets a new, custom theme.
func SetTheme(newTheme ColorScheme) {
    theme = newTheme
}

// UseTheme sets a predefined scheme. Currently available: "hello-world" and
// "black-and-white".
func UseTheme(th string) {
    switch th {
    case "helloworld":
        theme = themeHelloWorld
    default:
        theme = themeDefault
    }
}