Automatic theme (#29)
* add "automatic" theme set the theme and icons based on the system theme * update the default icons based on system theme * update pyqt to 6.5.0 to get the colorSchemeChanged callback * rename style to theme * remove unused svg files for default theme * ServerInfoDialog: update feedback colors in dark mode
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import logging
|
||||
from PyQt6 import QtGui, QtWidgets
|
||||
from PyQt6 import QtCore, QtGui, QtWidgets
|
||||
from gotify_tray.utils import get_abs_path
|
||||
from . import default, dark_purple, light_purple
|
||||
from gotify_tray.database import Settings
|
||||
@@ -9,28 +9,50 @@ settings = Settings("gotify-tray")
|
||||
logger = logging.getLogger("gotify-tray")
|
||||
|
||||
|
||||
styles = {
|
||||
themes = {
|
||||
"default": default,
|
||||
"automatic": None,
|
||||
"dark purple": dark_purple,
|
||||
"light purple": light_purple,
|
||||
}
|
||||
|
||||
|
||||
def set_theme(app: QtWidgets.QApplication, style: str = "default"):
|
||||
if style not in styles.keys():
|
||||
logger.error(f"set_style: style {style} is unsupported.")
|
||||
return
|
||||
def get_themes():
|
||||
return themes.keys()
|
||||
|
||||
|
||||
def is_dark_mode(app: QtWidgets.QApplication) -> bool:
|
||||
return app.styleHints().colorScheme() == QtCore.Qt.ColorScheme.Dark
|
||||
|
||||
|
||||
def is_valid_theme(theme: str) -> bool:
|
||||
return theme in get_themes()
|
||||
|
||||
|
||||
def set_theme(app: QtWidgets.QApplication, theme: str = "automatic"):
|
||||
if not is_valid_theme(theme):
|
||||
logger.warning(f"set_theme: theme {theme} is unsupported.")
|
||||
theme = "automatic"
|
||||
|
||||
if theme == "automatic":
|
||||
theme = "dark purple" if is_dark_mode(app) else "light purple"
|
||||
|
||||
stylesheet = ""
|
||||
with open(get_abs_path(f"gotify_tray/gui/themes/{style.replace(' ', '_')}/style.qss"), "r") as f:
|
||||
with open(get_abs_path(f"gotify_tray/gui/themes/{theme.replace(' ', '_')}/style.qss"), "r") as f:
|
||||
stylesheet += f.read()
|
||||
|
||||
app.setPalette(styles[style].get_palette())
|
||||
app.setPalette(themes[theme].get_palette())
|
||||
app.setStyleSheet(stylesheet)
|
||||
|
||||
def get_themes():
|
||||
return styles.keys()
|
||||
|
||||
def get_theme_file(file: str, theme: str = None) -> str:
|
||||
|
||||
def get_theme_file(app: QtWidgets.QApplication, file: str, theme: str = None) -> str:
|
||||
theme = settings.value("theme", type=str) if not theme else theme
|
||||
|
||||
if not is_valid_theme(theme):
|
||||
logger.warning(f"set_theme: theme {theme} is unsupported.")
|
||||
theme = "automatic"
|
||||
|
||||
if theme in ("automatic", "default"):
|
||||
theme = "dark purple" if is_dark_mode(app) else "light purple"
|
||||
|
||||
return get_abs_path(f"gotify_tray/gui/themes/{theme.replace(' ', '_')}/{file}")
|
||||
|
||||
@@ -6,6 +6,22 @@ QPushButton:default:hover, QPushButton:checked:hover {
|
||||
background: #441b85;
|
||||
}
|
||||
|
||||
QPushButton[state="success"] {
|
||||
background-color: #960b7a0b;
|
||||
color: white;
|
||||
}
|
||||
|
||||
QPushButton[state="failed"] {
|
||||
background-color: #8ebb2929;
|
||||
color: white;
|
||||
}
|
||||
|
||||
QLineEdit[state="success"] {}
|
||||
|
||||
QLineEdit[state="failed"] {
|
||||
border: 1px solid red;
|
||||
}
|
||||
|
||||
QToolTip {
|
||||
color: #BFBFBF;
|
||||
background-color: #5522a8;
|
||||
|
||||
@@ -1,45 +0,0 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 492.883 492.883" style="enable-background:new 0 0 492.883 492.883;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<path d="M122.941,374.241c-20.1-18.1-34.6-39.8-44.1-63.1c-25.2-61.8-13.4-135.3,35.8-186l45.4,45.4c2.5,2.5,7,0.7,7.6-3
|
||||
l24.8-162.3c0.4-2.7-1.9-5-4.6-4.6l-162.4,24.8c-3.7,0.6-5.5,5.1-3,7.6l45.5,45.5c-75.1,76.8-87.9,192-38.6,282
|
||||
c14.8,27.1,35.3,51.9,61.4,72.7c44.4,35.3,99,52.2,153.2,51.1l10.2-66.7C207.441,421.641,159.441,407.241,122.941,374.241z"/>
|
||||
<path d="M424.941,414.341c75.1-76.8,87.9-192,38.6-282c-14.8-27.1-35.3-51.9-61.4-72.7c-44.4-35.3-99-52.2-153.2-51.1l-10.2,66.7
|
||||
c46.6-4,94.7,10.4,131.2,43.4c20.1,18.1,34.6,39.8,44.1,63.1c25.2,61.8,13.4,135.3-35.8,186l-45.4-45.4c-2.5-2.5-7-0.7-7.6,3
|
||||
l-24.8,162.3c-0.4,2.7,1.9,5,4.6,4.6l162.4-24.8c3.7-0.6,5.4-5.1,3-7.6L424.941,414.341z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.2 KiB |
@@ -1,49 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="29.348576mm"
|
||||
height="29.348576mm"
|
||||
viewBox="0 0 29.348576 29.348576"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
sodipodi:docname="status_ok.svg"
|
||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:document-units="mm"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.77771465"
|
||||
inkscape:cx="188.37243"
|
||||
inkscape:cy="505.96964"
|
||||
inkscape:window-width="1284"
|
||||
inkscape:window-height="1082"
|
||||
inkscape:window-x="1622"
|
||||
inkscape:window-y="248"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="layer1" />
|
||||
<defs
|
||||
id="defs2" />
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-24.619528,-14.753546)">
|
||||
<circle
|
||||
style="fill:#00db00;fill-opacity:1;stroke-width:0.264583"
|
||||
id="path846"
|
||||
cx="39.293816"
|
||||
cy="29.427834"
|
||||
r="14.674288" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -1,49 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="29.348576mm"
|
||||
height="29.348576mm"
|
||||
viewBox="0 0 29.348576 29.348576"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
sodipodi:docname="status_connecting.svg"
|
||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:document-units="mm"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.77771465"
|
||||
inkscape:cx="188.37243"
|
||||
inkscape:cy="505.96964"
|
||||
inkscape:window-width="1284"
|
||||
inkscape:window-height="1082"
|
||||
inkscape:window-x="1852"
|
||||
inkscape:window-y="271"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="layer1" />
|
||||
<defs
|
||||
id="defs2" />
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-24.619528,-14.753546)">
|
||||
<circle
|
||||
style="fill:#ffb200;fill-opacity:1;stroke-width:0.264583"
|
||||
id="path846"
|
||||
cx="39.293816"
|
||||
cy="29.427834"
|
||||
r="14.674288" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -1,49 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="29.348576mm"
|
||||
height="29.348576mm"
|
||||
viewBox="0 0 29.348576 29.348576"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
sodipodi:docname="status_error.svg"
|
||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:document-units="mm"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.77771465"
|
||||
inkscape:cx="188.37243"
|
||||
inkscape:cy="505.96964"
|
||||
inkscape:window-width="1284"
|
||||
inkscape:window-height="1082"
|
||||
inkscape:window-x="2013"
|
||||
inkscape:window-y="263"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="layer1" />
|
||||
<defs
|
||||
id="defs2" />
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-24.619528,-14.753546)">
|
||||
<circle
|
||||
style="fill:#ff3232;fill-opacity:1;stroke-width:0.264583"
|
||||
id="path846"
|
||||
cx="39.293816"
|
||||
cy="29.427834"
|
||||
r="14.674288" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -1,49 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="29.348576mm"
|
||||
height="29.348576mm"
|
||||
viewBox="0 0 29.348576 29.348576"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
sodipodi:docname="status_inactive.svg"
|
||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:document-units="mm"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.77771465"
|
||||
inkscape:cx="188.37243"
|
||||
inkscape:cy="505.96964"
|
||||
inkscape:window-width="1284"
|
||||
inkscape:window-height="1082"
|
||||
inkscape:window-x="1852"
|
||||
inkscape:window-y="271"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="layer1" />
|
||||
<defs
|
||||
id="defs2" />
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-24.619528,-14.753546)">
|
||||
<circle
|
||||
style="fill:#b4b4b4;fill-opacity:1;stroke-width:0.264583"
|
||||
id="path846"
|
||||
cx="39.293816"
|
||||
cy="29.427834"
|
||||
r="14.674288" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"/></svg>
|
||||
|
Before Width: | Height: | Size: 155 B |
@@ -6,6 +6,22 @@ QPushButton:default:hover, QPushButton:checked:hover {
|
||||
background: #5c24b6;
|
||||
}
|
||||
|
||||
QPushButton[state="success"] {
|
||||
background-color: #6400FF00;
|
||||
color: black;
|
||||
}
|
||||
|
||||
QPushButton[state="failed"] {
|
||||
background-color: #64FF0000;
|
||||
color: black;
|
||||
}
|
||||
|
||||
QLineEdit[state="success"] {}
|
||||
|
||||
QLineEdit[state="failed"] {
|
||||
border: 1px solid red;
|
||||
}
|
||||
|
||||
QToolTip {
|
||||
color: #BFBFBF;
|
||||
background-color: #5522a8;
|
||||
|
||||
Reference in New Issue
Block a user