From eae49e889777a659eb4c6fcb4d150e3a5168e5a9 Mon Sep 17 00:00:00 2001 From: Athozus Date: Sun, 5 Nov 2023 23:05:52 +0100 Subject: [PATCH] Convert 3-chars hex colors to 6-chars hex colors Could break the code, the hex convert to rgb always run on 6-chars --- util/colors.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/colors.lua b/util/colors.lua index d17c454..ac0ebbd 100644 --- a/util/colors.lua +++ b/util/colors.lua @@ -1,6 +1,6 @@ local function get_base_color(id) local colors = { - h = "#999", -- header + h = "#999999", -- header s = "#72FF63", -- selected i = "#FFD700", -- important a = "#CCCCDD", -- additional