mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
20 lines
559 B
Lua
20 lines
559 B
Lua
-- Code editor syntax highlighting
|
|
|
|
---@class SyntaxTheme
|
|
---@field keyword string
|
|
---@field string string
|
|
---@field comment string
|
|
|
|
---@param language string
|
|
---@return SyntaxTheme
|
|
local function syntax(language)
|
|
local themes = {
|
|
typescript = { keyword = "#569cd6", string = "#ce9178", comment = "#6a9955" },
|
|
lua = { keyword = "#c586c0", string = "#ce9178", comment = "#6a9955" },
|
|
python = { keyword = "#569cd6", string = "#ce9178", comment = "#6a9955" }
|
|
}
|
|
return themes[language] or themes.typescript
|
|
end
|
|
|
|
return syntax
|