Add custom colors

This commit is contained in:
Josh-Heaps
2026-02-13 14:13:32 -07:00
parent 91ef4f41dd
commit e971a5f329
11 changed files with 989 additions and 135 deletions
@@ -0,0 +1,11 @@
namespace Media.JoshHeaps.Net.Models;
public class UserThemeOverrides
{
public long Id { get; set; }
public long UserId { get; set; }
public string BaseTheme { get; set; } = "light";
public Dictionary<string, string> ColorOverrides { get; set; } = new();
public DateTime CreatedAt { get; set; }
public DateTime UpdatedAt { get; set; }
}