diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2019-09-05 15:49:13 +0200 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2019-09-05 15:49:13 +0200 |
| commit | 91aec3796612bfe01fbd3cb737746ed0152a859a (patch) | |
| tree | 4ec8722abd3e486f09a7a06c6d479b3bacdfaa6a /gui/src | |
| parent | ad06b311792aca229c1397873690e790a3895862 (diff) | |
| download | mullvadvpn-91aec3796612bfe01fbd3cb737746ed0152a859a.tar.xz mullvadvpn-91aec3796612bfe01fbd3cb737746ed0152a859a.zip | |
Make cancel/disconnect button less transparent
Diffstat (limited to 'gui/src')
| -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', |
