mirror of
https://github.com/akiyosi/goneovim.git
synced 2025-08-30 06:29:28 +02:00
changed selected bg color
This commit is contained in:
parent
2f1cbc1df5
commit
d7de9f8483
2 changed files with 4 additions and 2 deletions
|
@ -47,6 +47,7 @@ type Editor struct {
|
|||
width int
|
||||
height int
|
||||
selectedBg *RGBA
|
||||
matchFg *RGBA
|
||||
}
|
||||
|
||||
func initWindow(box *ui.Box, width, height int) *ui.Window {
|
||||
|
@ -125,7 +126,8 @@ func InitEditor() error {
|
|||
font: font,
|
||||
cols: 0,
|
||||
rows: 0,
|
||||
selectedBg: newRGBA(81, 154, 186, 0.5),
|
||||
selectedBg: newRGBA(81, 154, 186, 0.6),
|
||||
matchFg: newRGBA(81, 154, 186, 1),
|
||||
}
|
||||
|
||||
editor.resize()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue