theme loading fixed, need to fix application

This commit is contained in:
Michael Freno
2025-10-13 09:03:23 -04:00
parent f9da77401a
commit 4ecfb7f354
4 changed files with 193 additions and 66 deletions

View File

@@ -1,7 +1,18 @@
-- Space Theme
-- All images are 256x256 with perfectly centered 9-slice regions
local Color = require("FlexLove").Color
-- Define Color inline to avoid circular dependency
local Color = {}
Color.__index = Color
function Color.new(r, g, b, a)
local self = setmetatable({}, Color)
self.r = r or 0
self.g = g or 0
self.b = b or 0
self.a = a or 1
return self
end
return {
name = "Space Theme",