blob: 528dbe6668d8be49953d9cdefc091ee58fb84c90 (
plain)
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
|
package uitcell
import tcell "github.com/gdamore/tcell/v2"
var (
// body is the main editing buffer
bodyStyle tcell.Style
bodyCursorStyle tcell.Style
bodyHilightStyle tcell.Style
// tag is the window tag line above the body
tagStyle tcell.Style
tagCursorStyle tcell.Style
tagHilightStyle tcell.Style
tagSquareStyle tcell.Style
tagSquareModifiedStyle tcell.Style
// vertline is the vertical line separating columns
vertlineStyle tcell.Style
// unprintable rune
unprintableStyle tcell.Style
)
// initStyles initializes the different styles (colors for background/foreground).
func initStyles() error {
bodyStyle = tcell.StyleDefault
// bodyCursorStyle = tcell.StyleDefault
bodyHilightStyle = bodyStyle.Reverse(true)
tagStyle = tcell.StyleDefault.Reverse(true)
tagCursorStyle = tcell.StyleDefault.Reverse(true)
tagHilightStyle = tagStyle.Reverse(false)
tagSquareStyle = tcell.StyleDefault.Reverse(true)
tagSquareModifiedStyle = tcell.StyleDefault.Reverse(true)
vertlineStyle = bodyStyle.Reverse(false)
unprintableStyle = bodyStyle.
Foreground(tcell.ColorRed)
return nil
}
// acmeStyles sets the color scheme to acme.
func setStyleAcme() error {
bodyStyle = tcell.StyleDefault.
Background(tcell.NewHexColor(0xffffea)).
Foreground(tcell.ColorBlack.TrueColor())
// bodyCursorStyle = bodyStyle.Background(tcell.NewHexColor(0xeaea9e))
bodyHilightStyle = bodyStyle.
Background(tcell.NewHexColor(0xeeee9e))
unprintableStyle = bodyStyle.
Foreground(tcell.ColorRed.TrueColor())
tagStyle = tcell.StyleDefault.
Background(tcell.NewHexColor(0xeaffff)).
Foreground(tcell.ColorBlack.TrueColor())
// tagCursorStyle = tagStyle.Background(tcell.NewHexColor(0x8888cc)).Foreground(tcell.ColorBlack.TrueColor())
tagHilightStyle = tagStyle.
Background(tcell.NewHexColor(0x9eeeee))
tagSquareStyle = tagStyle.
Background(tcell.NewHexColor(0xeaffff))
tagSquareModifiedStyle = tagStyle.
Background(tcell.NewHexColor(0x000099))
vertlineStyle = bodyStyle.Reverse(false)
return nil
}
|