diff options
Diffstat (limited to 'gui')
| -rw-r--r-- | gui/src/config.json | 2 | ||||
| -rw-r--r-- | gui/src/renderer/components/AppButtonStyles.tsx | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/gui/src/config.json b/gui/src/config.json index f735175d36..95ed24c452 100644 --- a/gui/src/config.json +++ b/gui/src/config.json @@ -25,6 +25,8 @@ "blue60": "rgba(41, 77, 115, 0.6)", "blue80": "rgba(41, 77, 115, 0.8)", "red95": "rgba(227, 64, 57, 0.95)", + "red80": "rgba(227, 64, 57, 0.80)", + "red60": "rgba(227, 64, 57, 0.60)", "red40": "rgba(227, 64, 57, 0.40)", "red45": "rgba(227, 64, 57, 0.45)", "green90": "rgba(68, 173, 77, 0.9)", diff --git a/gui/src/renderer/components/AppButtonStyles.tsx b/gui/src/renderer/components/AppButtonStyles.tsx index 055ce9b031..e9594e3994 100644 --- a/gui/src/renderer/components/AppButtonStyles.tsx +++ b/gui/src/renderer/components/AppButtonStyles.tsx @@ -27,10 +27,10 @@ export default { backgroundColor: colors.white40, }), redTransparent: Styles.createButtonStyle({ - backgroundColor: colors.red40, + backgroundColor: colors.red60, }), redTransparentHover: Styles.createButtonStyle({ - backgroundColor: colors.red45, + backgroundColor: colors.red80, }), common: Styles.createViewStyle({ cursor: 'default', |
