local colors = {
"theme.footer.bg",
"theme.footer.text",
"theme.header.line",
"theme.header.text",
"theme.nav.active",
"theme.nav.bg",
"theme.nav.shadow",
"theme.nav.text",
"theme.tablist.shadow",
"theme.tablist.tabactivebg",
"theme.tablist.tabdecorator",
"theme.tablist.text",
"theme.tablist.textactive",
"theme.ui.bg1",
"theme.ui.bg2",
"theme.ui.boarder"
}
local function randomize_colors()
for _, key in ipairs(colors) do
gui.SetValue(key, math.random(0, 255), math.random(0, 255), math.random(0, 255))
end
end
callbacks.Register("Draw", randomize_colors)