From 513f834cd81335e8164f52f6132a7c9723c2fb3b Mon Sep 17 00:00:00 2001 From: Saptak S Date: Sun, 30 May 2021 17:50:24 +0530 Subject: Updates colors for the new tab buttons in dark mode --- desktop/src/onionshare/gui_common.py | 18 +++++++++++++++--- 1 file 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": """ -- cgit v1.2.3-54-g00ecf