Add various extra customization options for custom themes. Fixes #40

This commit is contained in:
Gericom
2026-03-29 14:48:12 +02:00
parent 53727e5fdd
commit cf9ce63db5
17 changed files with 494 additions and 56 deletions

View File

@@ -0,0 +1,15 @@
#pragma once
#include "core/math/Point.h"
#include "core/math/Rgb.h"
class CustomBannerListTextElementInfo
{
public:
CustomBannerListTextElementInfo(const Rgb8& textColor)
: _textColor(textColor) { }
const Rgb8& GetTextColor() const { return _textColor; }
private:
Rgb8 _textColor;
};