From dd70b438d3b27b82ae8efb54b6c508aabcd7eabf Mon Sep 17 00:00:00 2001 From: obrusvit Date: Sun, 2 Jun 2024 15:19:56 +0200 Subject: [PATCH] feat(core/ui): default button active style [no changelog] --- core/embed/rust/src/ui/model_mercury/theme/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/embed/rust/src/ui/model_mercury/theme/mod.rs b/core/embed/rust/src/ui/model_mercury/theme/mod.rs index faa1b31f2f..da8c4f70ed 100644 --- a/core/embed/rust/src/ui/model_mercury/theme/mod.rs +++ b/core/embed/rust/src/ui/model_mercury/theme/mod.rs @@ -239,9 +239,9 @@ pub const fn button_default() -> ButtonStyleSheet { }, active: &ButtonStyle { font: Font::DEMIBOLD, - text_color: GREY_LIGHT, + text_color: GREY_EXTRA_LIGHT, button_color: BG, - icon_color: GREY_LIGHT, + icon_color: GREY_EXTRA_LIGHT, background_color: BG, }, disabled: &ButtonStyle { @@ -366,7 +366,7 @@ pub const fn button_danger() -> ButtonStyleSheet { font: Font::DEMIBOLD, text_color: ORANGE_LIGHT, button_color: BG, - icon_color: ORANGE_LIGHT, + icon_color: ORANGE_DIMMED, background_color: BG, }, active: &ButtonStyle {