Files
flutter_lua_runtime/example/assets/games/ludo/scripts/theme.lua
2026-06-07 22:53:58 +08:00

19 lines
341 B
Lua

local i18n = runtime.import("i18n")
return {
title = function()
return i18n.t("title")
end,
colors = {
red = "#ef4444",
blue = "#3b82f6",
top_bar = "#020617",
dice_button = "#2563eb",
board = "#1e293b",
red_home = "#7f1d1d",
blue_home = "#1e3a8a",
path_cell = "#f8fafc",
text = "#ffffff"
}
}