From 1792930b616642a7f9071cfb7e43439b6f7584a0 Mon Sep 17 00:00:00 2001 From: Georgia Monahan Date: Thu, 17 Nov 2022 10:41:12 -0800 Subject: [PATCH 1/3] Fix button text --- src/styles/styles.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/styles/styles.js b/src/styles/styles.js index 0d4e97012dec6..c4ed03991a5c0 100644 --- a/src/styles/styles.js +++ b/src/styles/styles.js @@ -480,11 +480,11 @@ const styles = { }, buttonSuccessText: { - color: themeColors.text, + color: themeColors.textLight, }, buttonDangerText: { - color: themeColors.text, + color: themeColors.textLight, }, hoveredComponentBG: { From 00bf1b9e8e0a5e895a031b0974840640ea8fa7b9 Mon Sep 17 00:00:00 2001 From: Georgia Monahan Date: Thu, 17 Nov 2022 11:05:43 -0800 Subject: [PATCH 2/3] Fix dropdown button line color --- src/styles/styles.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/styles.js b/src/styles/styles.js index c4ed03991a5c0..a66bea2c3629b 100644 --- a/src/styles/styles.js +++ b/src/styles/styles.js @@ -448,7 +448,7 @@ const styles = { buttonDropdown: { borderLeftWidth: 1, - borderColor: themeColors.text, + borderColor: themeColors.textLight, }, noRightBorderRadius: { From a147e4a180dd9b00a690b00cf9ea0083595ad592 Mon Sep 17 00:00:00 2001 From: Georgia Monahan Date: Thu, 17 Nov 2022 13:23:12 -0800 Subject: [PATCH 3/3] Fix default inverse color --- src/styles/themes/default.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/themes/default.js b/src/styles/themes/default.js index ec561b881226c..648387852f65f 100644 --- a/src/styles/themes/default.js +++ b/src/styles/themes/default.js @@ -106,7 +106,7 @@ const oldTheme = { successHover: colors.greenHover, successPressed: colors.greenPressed, transparent: colors.transparent, - inverse: colors.white, + inverse: colors.dark, textLight: colors.white, textDark: colors.dark, };