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,17 @@
#pragma once
#include "core/math/Point.h"
#include "core/math/Rgb.h"
class CustomTopIconInfo
{
public:
CustomTopIconInfo(const Point& position, const Rgb8& blendColor)
: _position(position), _blendColor(blendColor) { }
const Point& GetPosition() const { return _position; }
const Rgb8& GetBlendColor() const { return _blendColor; }
private:
Point _position;
Rgb8 _blendColor;
};