cc-mek-scada/supervisor/panel/style.lua

35 lines
855 B
Lua
Raw Normal View History

2023-05-05 17:04:13 +00:00
--
-- Graphics Style Options
--
local core = require("graphics.core")
local themes = require("graphics.themes")
2023-05-05 17:04:13 +00:00
---@class svr_style
2023-05-05 17:04:13 +00:00
local style = {}
local cpair = core.cpair
2023-05-05 17:04:13 +00:00
2024-03-11 16:35:06 +00:00
style.theme = themes.sandstone
style.fp = themes.get_fp_style(style.theme)
2024-03-12 16:24:32 +00:00
style.colorblind = false
style.ind_grn = cpair(colors.green, colors.green_off)
-- set theme per configuration
2024-03-12 16:24:32 +00:00
---@param fp FP_THEME front panel theme
2024-03-12 17:15:28 +00:00
---@param color_mode COLOR_MODE the color mode to use
2024-03-12 16:24:32 +00:00
function style.set_theme(fp, color_mode)
if fp == themes.FP_THEME.SANDSTONE then
style.theme = themes.sandstone
2024-03-12 16:24:32 +00:00
elseif fp == themes.FP_THEME.BASALT then
style.theme = themes.basalt
end
style.fp = themes.get_fp_style(style.theme)
2024-03-12 16:24:32 +00:00
2024-03-25 14:11:35 +00:00
style.colorblind = color_mode ~= themes.COLOR_MODE.STANDARD and color_mode ~= themes.COLOR_MODE.STD_ON_BLACK
end
2023-05-05 17:04:13 +00:00
return style