reorganize themes, see #42

This commit is contained in:
airstruck
2016-02-11 11:10:40 -05:00
parent c9a5811adc
commit 774d2856c1
6 changed files with 278 additions and 250 deletions

13
luigi/theme/light-big.lua Normal file
View File

@@ -0,0 +1,13 @@
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