From b92742ede9447aaf126bd818c28149098d748f47 Mon Sep 17 00:00:00 2001 From: Ronald Date: Sun, 29 Jun 2025 11:48:37 +0100 Subject: [PATCH] Update themes --- themes.odin | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/themes.odin b/themes.odin index 59fab7e..88d2079 100644 --- a/themes.odin +++ b/themes.odin @@ -11,8 +11,9 @@ themes := map[string]Colours { line_numbers_background = Colour{40, 40, 40, 255}, active_tab = Colour{60, 56, 54, 255}, inactive_tab = Colour{50, 48, 47, 255}, - tab_border = Colour{102, 92, 84, 255}, + tab_border = Colour{0, 218, 0, 255}, cursor = Colour{251, 241, 199, 255}, + highlight = Colour{61, 63, 64, 255} }, "solarized dark" = Colours{ background = Colour{0, 43, 54, 255}, @@ -24,6 +25,7 @@ themes := map[string]Colours { inactive_tab = Colour{0, 43, 54, 255}, tab_border = Colour{88, 110, 117, 255}, cursor = Colour{147, 161, 161, 255}, + highlight = Colour{61, 63, 64, 255} }, }