mirror of
https://github.com/cave-story-randomizer/cave-story-randomizer
synced 2025-05-01 02:54:44 +00:00
14 lines
392 B
Lua
14 lines
392 B
Lua
local RESOURCE = (...):gsub('%.', '/') .. '/'
|
|
local ROOT = (...):gsub('[^.]*.[^.]*$', '')
|
|
|
|
return function (config)
|
|
local theme = require(ROOT .. 'theme.light')()
|
|
theme.Control._defaultDimension = 44
|
|
theme.Line._defaultDimension = 32
|
|
theme.menu.height = 32
|
|
theme['menu.item'].height = 32
|
|
theme['menu.item'].padding = 8
|
|
theme.panel.padding = 8
|
|
return theme
|
|
end
|