From 2240f969404b6dd29ef45cb482b443c0b773f837 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Sun, 13 Dec 2020 16:54:48 -0700 Subject: [PATCH] Add darken/lighten variants of the confirm/cancel colours. --- web/src/css/theme.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/web/src/css/theme.css b/web/src/css/theme.css index fe6a63d..7ca8e76 100644 --- a/web/src/css/theme.css +++ b/web/src/css/theme.css @@ -62,9 +62,13 @@ --modal-content-background: var(--background1); --modal-content-text: var(--background1-text); - /* The colours used for the buttons in the discard hand modal */ - --confirm-background: #00aa00; + /* The colours used for the buttons in the modal that are for confirming actions */ + --confirm-background: #018501; + --confirm-background-darken: #006600; + --confirm-background-lighten: #00aa00; --confirm-text: white; --cancel-background: #aa0000; + --cancel-background-darken: #830101; + --cancel-background-lighten: #e71111; --cancel-text: white; } \ No newline at end of file