Files
aiolauncher_scripts/samples/fmt-test.lua
2022-06-24 13:17:57 +03:00

22 lines
617 B
Lua

local fmt = require "fmt"
function on_resume()
ui:show_lines{
fmt.bold("bold"),
fmt.italic("italic"),
fmt.underline("underline"),
fmt.primary("primary"),
fmt.secondary("secondary"),
fmt.red("red"),
fmt.green("green"),
fmt.blue("blue"),
fmt.colored("lime", "#00FF00"),
fmt.bg_colored(fmt.colored("lime background", "#000000"), "#00FF00"),
fmt.small("small font"),
fmt.big("big font"),
fmt.space().."start with space",
fmt.space(4).."start with tab",
fmt.escape("<b>not parsed</b>"),
}
end