Change default color scheme

This commit is contained in:
2025-06-07 22:12:19 +03:00
parent 6b3ef29515
commit f086463373
5 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ func PrintMessage(window *Window, message string) {
func drawMessageBar(window *Window) {
screen := window.screen
messageBarStyle := tcell.StyleDefault.Foreground(tcell.ColorBlack).Background(tcell.ColorWhite)
messageBarStyle := tcell.StyleDefault.Foreground(tcell.ColorWhite).Background(tcell.Color236)
sizeX, sizeY := screen.Size()