aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSaptak S <saptak013@gmail.com>2021-05-30 17:50:24 +0530
committerSaptak S <saptak013@gmail.com>2021-05-30 17:51:00 +0530
commit513f834cd81335e8164f52f6132a7c9723c2fb3b (patch)
tree8b85b7976f64ef61551617336951b169463f2753
parent33ccbc199ff8957b1c7d1ef9ad8583d48f39a076 (diff)
downloadonionshare-513f834cd81335e8164f52f6132a7c9723c2fb3b.tar.gz
onionshare-513f834cd81335e8164f52f6132a7c9723c2fb3b.zip
Updates colors for the new tab buttons in dark mode
-rw-r--r--desktop/src/onionshare/gui_common.py18
1 files changed, 15 insertions, 3 deletions
diff --git a/desktop/src/onionshare/gui_common.py b/desktop/src/onionshare/gui_common.py
index 1a44a128..441aff25 100644
--- a/desktop/src/onionshare/gui_common.py
+++ b/desktop/src/onionshare/gui_common.py
@@ -84,10 +84,16 @@ class GuiCommon:
header_color = "#4E064F" # purple in light
title_color = "#333333" # dark gray color in main window
stop_button_color = "#d0011b" # red button color for stopping server
+ new_tab_button_background = "#ffffff"
+ new_tab_button_border = "#efeff0"
+ new_tab_button_text_color = "#4e0d4e"
if color_mode == "dark":
header_color = "#F2F2F2"
title_color = "#F2F2F2"
stop_button_color = "#C32F2F"
+ new_tab_button_background = "#5F5F5F"
+ new_tab_button_border = "#878787"
+ new_tab_button_text_color = "#FFFFFF"
return {
# OnionShareGui styles
@@ -261,11 +267,17 @@ class GuiCommon:
""",
"new_tab_button_text": """
QLabel {
- border: 1px solid #efeff0;
+ border: 1px solid """
+ + new_tab_button_border
+ + """;
border-radius: 4px;
- background-color: #ffffff;
+ background-color: """
+ + new_tab_button_background
+ + """;
text-align: center;
- color: #4e0d4e;
+ color: """
+ + new_tab_button_text_color
+ + """;
}
""",
"new_tab_title_text": """