1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-07 12:54:00 +00:00
OpenMW/files/data/scripts/omw/mwui/constants.lua

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
366 B
Lua
Raw Normal View History

2022-05-19 19:49:14 +00:00
local ui = require('openmw.ui')
local util = require('openmw.util')
return {
textNormalSize = 16,
2022-05-14 10:27:30 +00:00
textHeaderSize = 16,
headerColor = util.color.rgb(223 / 255, 201 / 255, 159 / 255),
normalColor = util.color.rgb(202 / 255, 165 / 255, 96 / 255),
border = 2,
thickBorder = 4,
padding = 2,
2022-05-19 19:49:14 +00:00
whiteTexture = ui.texture { path = 'white' },
}