From b1b7c505a1e1ed3cf3206da8ca925a71122479f6 Mon Sep 17 00:00:00 2001 From: David <49467229+TheSecurityDev@users.noreply.github.com> Date: Wed, 22 Oct 2025 13:28:37 -0500 Subject: [PATCH] raylib: add danger button pressed style (#36413) add danger hover style --- system/ui/widgets/button.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/ui/widgets/button.py b/system/ui/widgets/button.py index 15d48b4e1..baf45ce95 100644 --- a/system/ui/widgets/button.py +++ b/system/ui/widgets/button.py @@ -61,7 +61,7 @@ BUTTON_BACKGROUND_COLORS = { BUTTON_PRESSED_BACKGROUND_COLORS = { ButtonStyle.NORMAL: rl.Color(74, 74, 74, 255), ButtonStyle.PRIMARY: rl.Color(48, 73, 244, 255), - ButtonStyle.DANGER: rl.Color(255, 36, 36, 255), + ButtonStyle.DANGER: rl.Color(204, 0, 0, 255), ButtonStyle.TRANSPARENT: rl.BLACK, ButtonStyle.TRANSPARENT_WHITE_TEXT: rl.BLANK, ButtonStyle.TRANSPARENT_WHITE_BORDER: rl.BLANK,