From c17fa4893a6512fe30da25eec931bed24651e1bd Mon Sep 17 00:00:00 2001 From: Zoryn Date: Tue, 22 Oct 2024 10:48:02 -0400 Subject: [PATCH] define default_orange_color, not sure what it should be --- cybersyn/prototypes/gui-style.lua | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/cybersyn/prototypes/gui-style.lua b/cybersyn/prototypes/gui-style.lua index b579675..e9a3025 100644 --- a/cybersyn/prototypes/gui-style.lua +++ b/cybersyn/prototypes/gui-style.lua @@ -283,6 +283,13 @@ styles.ltnm_main_warning_frame = { -- LABEL STYLES +--I am unsure what this was supposed to be in 1.1 +local default_orange_color = { + r = 255, + g = 128, + b = 0 +} + local hovered_label_color = { r = 0.5 * (1 + default_orange_color.r), g = 0.5 * (1 + default_orange_color.g),