45 lines
566 B
Lua
45 lines
566 B
Lua
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
|