From 461a233eb2bf082c971d38554fd07a7b962f65fa Mon Sep 17 00:00:00 2001 From: Sara Date: Thu, 18 Sep 2025 15:36:32 +0200 Subject: [PATCH] feat: separated button style into warning and proceed --- src/style.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/style.h b/src/style.h index 8d791d2..ebe5cb7 100644 --- a/src/style.h +++ b/src/style.h @@ -70,9 +70,12 @@ fontId = FONT_BOLD,\ // BUTTONS //////////////////////////////////// -constexpr Clay_Color buttonBackground = { +constexpr Clay_Color warningButton = { 177, 56, 52, 255 }; +constexpr Clay_Color proceedButton = { + 49, 181, 99, 255 +}; constexpr Clay_Padding buttonPadding = { 24, 24, 4, 4,