mirror of
https://github.com/MikaylaFischler/cc-mek-scada.git
synced 2024-08-30 18:22:34 +00:00
19 lines
321 B
Lua
19 lines
321 B
Lua
--
|
|
-- Graphics Style Options
|
|
--
|
|
|
|
local core = require("graphics.core")
|
|
local themes = require("graphics.themes")
|
|
|
|
---@class rtu_style
|
|
local style = {}
|
|
|
|
local cpair = core.cpair
|
|
|
|
style.theme = themes.basalt
|
|
style.fp = themes.get_fp_style(style.theme)
|
|
|
|
style.ind_grn = cpair(colors.green, colors.green_off)
|
|
|
|
return style
|