need to remove guiding bars

This commit is contained in:
Michael Freno
2025-10-15 20:11:27 -04:00
parent a971cabafa
commit ba550a60d0
10 changed files with 942 additions and 236 deletions

View File

@@ -1,16 +1,4 @@
-- Space Theme
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
local Color = require("libs.FlexLove").Color
return {
name = "Space Theme",