Initial flame_lua_runtime package

This commit is contained in:
gem
2026-06-07 22:53:58 +08:00
commit 733b2fb798
262 changed files with 28439 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
local theme = runtime.import("theme")
---@class ShowcaseStyles
local styles = {}
styles.title = {
color = theme.text,
fontSize = 24,
layer = 20
}
styles.label = {
color = theme.muted,
fontSize = 14,
layer = 20
}
styles.value = {
color = theme.text,
fontSize = 16,
layer = 20
}
styles.button = {
color = "#ff2563eb",
radius = 10,
fontSize = 14,
layer = 30
}
styles.small_button = {
color = "#ff334155",
radius = 8,
fontSize = 12,
layer = 30
}
styles.card = {
color = theme.card,
radius = 14,
layer = 10
}
return styles