Make comic flow themable

This commit is contained in:
luisangelsm
2026-01-20 11:23:42 +01:00
parent 1bd4926b25
commit b662e4975b
2 changed files with 28 additions and 1 deletions

View File

@ -89,6 +89,11 @@ struct ComicVineThemeTemplates {
QSize rowIconSize = QSize(8, 7);
};
struct ComicFlowColors {
QColor backgroundColor;
QColor textColor;
};
struct ComicVineTheme {
QString defaultLabelQSS;
QString titleLabelQSS;
@ -123,6 +128,7 @@ struct ComicVineTheme {
};
struct Theme {
ComicFlowColors comicFlow;
ComicVineTheme comicVine;
};