blob: 4a945cb3b6e15d304bc71b58adcc475b9c308da2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
--- @meta
--- @class theme
local theme = {}
--- Loads a theme from a filename, this can be either builtin (ie, located in
--- "/lua/") or on the sdcard (in, '/sdcard/.themes/')
--- If successful, the filename will be saved to non-volatile storage.
--- Returns whether the theme was successfully loaded
--- @param filename string
--- @return boolean
function theme.load_theme(filename) end
--- Sets a theme directly from a table. Does not persist between restarts.
--- @param theme
function theme.set(theme) end
--- Set the style name (similar in concept to a css selector) for an object
--- This will set any styles associated with that style name on the object
--- @param obj Object The object to set a particular style on
--- @param style string The name of the style to apply to this object
function theme.set_style(obj, style) end
--- Returns the filename of the saved theme
--- @return string
function theme.theme_filename() end
return theme
|