From 7f6fd33fea7ea530181ec34bc38f540e7930d460 Mon Sep 17 00:00:00 2001 From: Vit Horacek <36083550+mountiny@users.noreply.github.com> Date: Thu, 30 May 2024 12:37:03 +0200 Subject: [PATCH] Revert "Fix: add darker color for markdown" --- src/styles/utils/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/utils/index.ts b/src/styles/utils/index.ts index 7fe8d4f000bc..82602efa88b3 100644 --- a/src/styles/utils/index.ts +++ b/src/styles/utils/index.ts @@ -1324,7 +1324,7 @@ const createStyleUtils = (theme: ThemeColors, styles: ThemeStyles) => ({ case CONST.BUTTON_STATES.PRESSED: return {backgroundColor: theme.buttonPressedBG}; case CONST.BUTTON_STATES.ACTIVE: - return isMenuItem ? {backgroundColor: theme.hoverComponentBG} : {backgroundColor: theme.buttonHoveredBG}; + return isMenuItem ? {backgroundColor: theme.border} : {backgroundColor: theme.buttonHoveredBG}; case CONST.BUTTON_STATES.DISABLED: case CONST.BUTTON_STATES.DEFAULT: default: