-
Notifications
You must be signed in to change notification settings - Fork 34
/
style.go
41 lines (30 loc) · 909 Bytes
/
style.go
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
package main
import (
"github.com/nsf/termbox-go"
)
type Style struct {
default_bg termbox.Attribute
default_fg termbox.Attribute
rune_fg termbox.Attribute
space_rune_fg termbox.Attribute
int_fg termbox.Attribute
bit_fg termbox.Attribute
selected_option_bg termbox.Attribute
search_progress_fg termbox.Attribute
text_cursor_hex_bg termbox.Attribute
bit_cursor_hex_bg termbox.Attribute
int_cursor_hex_bg termbox.Attribute
fp_cursor_hex_bg termbox.Attribute
hilite_hex_fg termbox.Attribute
hilite_rune_fg termbox.Attribute
field_editor_bg termbox.Attribute
field_editor_fg termbox.Attribute
field_editor_last_bg termbox.Attribute
field_editor_last_fg termbox.Attribute
field_editor_invalid_bg termbox.Attribute
field_editor_invalid_fg termbox.Attribute
about_logo_bg termbox.Attribute
filled_bit_rune rune
empty_bit_rune rune
space_rune rune
}