19 lines
365 B
Lua
19 lines
365 B
Lua
---@class ShowcaseTheme
|
|
local theme = {
|
|
screen_width = 720,
|
|
screen_height = 720,
|
|
background = "#ff0f172a",
|
|
panel = "#ff111827",
|
|
card = "#ff1f2937",
|
|
border = "#ff334155",
|
|
text = "#fff8fafc",
|
|
muted = "#ff94a3b8",
|
|
primary = "#ff38bdf8",
|
|
success = "#ff22c55e",
|
|
warning = "#fff59e0b",
|
|
danger = "#ffef4444",
|
|
purple = "#ffa855f7"
|
|
}
|
|
|
|
return theme
|