mirror of https://gitea.it/1414codeforge/yui
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
264 B
Lua
12 lines
264 B
Lua
2 years ago
|
local theme = {
|
||
|
cornerRadius = 4,
|
||
|
|
||
|
color = {
|
||
|
normal = {bg = { 0.25, 0.25, 0.25}, fg = {0.73, 0.73, 0.73}},
|
||
|
hovered = {bg = { 0.19, 0.6, 0.73}, fg = {1, 1, 1}},
|
||
|
active = {bg = { 1, 0.6, 0}, fg = {1, 1, 1}}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return theme
|