Initial implementation of theming

This commit is contained in:
luisangelsm
2026-02-19 17:39:22 +01:00
parent ed28c94f66
commit 044176d6b7
303 changed files with 4634 additions and 2119 deletions

View File

@ -0,0 +1,17 @@
#ifndef WHATS_NEW_DIALOG_THEME_H
#define WHATS_NEW_DIALOG_THEME_H
#include <QColor>
#include <QPixmap>
struct WhatsNewDialogTheme {
QColor backgroundColor;
QColor headerTextColor;
QColor versionTextColor;
QColor contentTextColor;
QColor linkColor;
QPixmap closeButtonIcon;
QPixmap headerDecoration;
};
#endif // WHATS_NEW_DIALOG_THEME_H