aboutsummaryrefslogtreecommitdiff
path: root/desktop/src
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2021-11-06 21:02:24 -0700
committerMicah Lee <micah@micahflee.com>2021-11-06 21:02:28 -0700
commit472e383b7d0f4040e4963ffff95da1e86fe85cca (patch)
treec04cb46f2dd71f24b6353048e427024287063967 /desktop/src
parentf915f911c6fc7dd4dea500538a993b7382fee85b (diff)
downloadonionshare-472e383b7d0f4040e4963ffff95da1e86fe85cca.tar.gz
onionshare-472e383b7d0f4040e4963ffff95da1e86fe85cca.zip
Fix settings error color in dark mode
Diffstat (limited to 'desktop/src')
-rw-r--r--desktop/src/onionshare/gui_common.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/desktop/src/onionshare/gui_common.py b/desktop/src/onionshare/gui_common.py
index 39f6d46f..0db0f051 100644
--- a/desktop/src/onionshare/gui_common.py
+++ b/desktop/src/onionshare/gui_common.py
@@ -93,6 +93,7 @@ class GuiCommon:
share_zip_progess_bar_chunk_color = "#4E064F"
history_background_color = "#ffffff"
history_label_color = "#000000"
+ settings_error_color = "#FF0000"
if color_mode == "dark":
header_color = "#F2F2F2"
title_color = "#F2F2F2"
@@ -103,6 +104,7 @@ class GuiCommon:
share_zip_progess_bar_border_color = "#F2F2F2"
history_background_color = "#191919"
history_label_color = "#ffffff"
+ settings_error_color = "#FF9999"
return {
# OnionShareGui styles
@@ -400,7 +402,9 @@ class GuiCommon:
# Tor Settings dialogs
"tor_settings_error": """
QLabel {
- color: #FF0000;
+ color: """
+ + settings_error_color
+ + """;
}
""",
}