Replies: 3 comments 5 replies
-
Steam-like Theme CodeColor Palette definition:def PALETTE_STEAMUI():
""" returns a Steam-ui like color palette """
palette_steam = QPalette()
# Needed for theming Qt's Wayland Client Side Decoration
palette_steam.setColor(QPalette.Window, QColor(23, 29, 37)) #171D25
palette_steam.setColor(QPalette.WindowText, Qt.white)
return palette_steam
Theme definition (
|
Beta Was this translation helpful? Give feedback.
-
Maybe the color for the compatibility tools list should be more like the background color for textboxes? Also, extremely minor, but maybe we could change the font color as well to match the Steam color, which appears to be slightly more muted? It may fit these colors better :-) I'm not sure how much control we have over its color, or even things like the hover/selected color. |
Beta Was this translation helpful? Give feedback.
-
I think once this is complete, we should update the screenshots on the Readme, on Flathub, and on the website. They're a little behind now and also the website explicitly shows the themes, so we can update the older screenshots and include this new theme :-) |
Beta Was this translation helpful? Give feedback.
-
Qt allows loading custom themes from Qt Style Sheet files.
To improve the UX of ProtonUp-Qt for Steam Deck users, a Steam-like theme can be introduced to ProtonUp-Qt. See #55 (comment).
I've implemented a basic theme loader for a Steam-like theme here: 2dee02f
How would a Steam-like theme look like?
#464D58
+ shadowBeta Was this translation helpful? Give feedback.
All reactions