2018-01-10 08:43:32 +00:00
|
|
|
package tview
|
|
|
|
|
|
|
|
import "github.com/gdamore/tcell"
|
|
|
|
|
2019-03-09 13:04:59 +00:00
|
|
|
// Theme defines the colors used when primitives are initialized.
|
2018-12-05 17:17:01 +00:00
|
|
|
type Theme struct {
|
2020-04-19 03:00:36 +00:00
|
|
|
// Title, border and other lines
|
|
|
|
TitleColor tcell.Color // Box titles.
|
|
|
|
BorderColor tcell.Color // Box borders.
|
|
|
|
GraphicsColor tcell.Color // Graphics.
|
|
|
|
|
|
|
|
// Text
|
|
|
|
PrimaryTextColor tcell.Color // Primary text.
|
|
|
|
SecondaryTextColor tcell.Color // Secondary text (e.g. labels).
|
|
|
|
TertiaryTextColor tcell.Color // Tertiary text (e.g. subtitles, notes).
|
|
|
|
InverseTextColor tcell.Color // Text on primary-colored backgrounds.
|
|
|
|
ContrastSecondaryTextColor tcell.Color // Secondary text on ContrastBackgroundColor-colored backgrounds.
|
|
|
|
|
|
|
|
// Background
|
2018-01-10 08:43:32 +00:00
|
|
|
PrimitiveBackgroundColor tcell.Color // Main background color for primitives.
|
|
|
|
ContrastBackgroundColor tcell.Color // Background color for contrasting elements.
|
|
|
|
MoreContrastBackgroundColor tcell.Color // Background color for even more contrasting elements.
|
2020-04-19 03:00:36 +00:00
|
|
|
|
|
|
|
// Context menu
|
|
|
|
ContextMenuPaddingTop int // Top padding.
|
|
|
|
ContextMenuPaddingBottom int // Bottom padding.
|
|
|
|
ContextMenuPaddingLeft int // Left padding.
|
|
|
|
ContextMenuPaddingRight int // Right padding.
|
2018-12-05 17:17:01 +00:00
|
|
|
}
|
|
|
|
|
2019-03-09 13:04:59 +00:00
|
|
|
// Styles defines the theme for applications. The default is for a black
|
|
|
|
// background and some basic colors: black, white, yellow, green, cyan, and
|
|
|
|
// blue.
|
2018-12-05 17:17:01 +00:00
|
|
|
var Styles = Theme{
|
2020-04-19 03:00:36 +00:00
|
|
|
TitleColor: tcell.ColorWhite,
|
|
|
|
BorderColor: tcell.ColorWhite,
|
|
|
|
GraphicsColor: tcell.ColorWhite,
|
|
|
|
|
|
|
|
PrimaryTextColor: tcell.ColorWhite,
|
|
|
|
SecondaryTextColor: tcell.ColorYellow,
|
|
|
|
TertiaryTextColor: tcell.ColorGreen,
|
|
|
|
InverseTextColor: tcell.ColorBlue,
|
|
|
|
ContrastSecondaryTextColor: tcell.ColorDarkCyan,
|
|
|
|
|
2018-01-10 08:43:32 +00:00
|
|
|
PrimitiveBackgroundColor: tcell.ColorBlack,
|
|
|
|
ContrastBackgroundColor: tcell.ColorBlue,
|
|
|
|
MoreContrastBackgroundColor: tcell.ColorGreen,
|
2020-04-19 03:00:36 +00:00
|
|
|
|
|
|
|
ContextMenuPaddingTop: 0,
|
|
|
|
ContextMenuPaddingBottom: 0,
|
|
|
|
ContextMenuPaddingLeft: 1,
|
|
|
|
ContextMenuPaddingRight: 1,
|
2018-01-10 08:43:32 +00:00
|
|
|
}
|