2013-05-11 21:02:42 +02:00
|
|
|
local setmetatable = setmetatable
|
2016-06-24 22:53:47 +02:00
|
|
|
local theme = require( "radical.theme" )
|
2013-05-11 21:02:42 +02:00
|
|
|
|
|
|
|
local module = {
|
|
|
|
margins = {
|
|
|
|
TOP = 2,
|
|
|
|
BOTTOM = 2,
|
|
|
|
RIGHT = 2,
|
|
|
|
LEFT = 4
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-11 07:36:50 +01:00
|
|
|
return setmetatable(module, { __call = function(_, ...) theme.update_colors(...) end })
|
2013-05-11 21:02:42 +02:00
|
|
|
-- kate: space-indent on; indent-width 2; replace-tabs on;
|