17 lines
439 B
Lua
17 lines
439 B
Lua
|
local overrides = function(theme)
|
||
|
theme.rounded_corners = false
|
||
|
theme.corner_radius = theme.dpi(3)
|
||
|
|
||
|
theme.titlebar_spacing = theme.dpi(5)
|
||
|
theme.titlebar_margins = theme.dpi(5)
|
||
|
|
||
|
theme.titlebar_bg_normal = theme.color.bar.color --.. "BB"
|
||
|
theme.titlebar_fg_normal = theme.color.bar.active
|
||
|
theme.titlebar_bg_focus = theme.color.bar.color -- .. "BB"
|
||
|
theme.titlebar_fg_focus = theme.color.bar.active
|
||
|
|
||
|
return theme
|
||
|
end
|
||
|
|
||
|
return overrides
|