chore: initial commit with some colors defined

This commit is contained in:
Daniel Hill 2023-01-03 21:29:50 -05:00
commit 76a07e9b01
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,19 @@
local M = {}
M.default = {
none = "NONE",
fg = "#e4e4e4",
["fg+1"] = "#f4f4ff",
["fg+2"] = "#f5f5f5",
white = "#ffffff",
black = "#000000",
["bg-1"] = "#101010",
bg = "#181818",
["bg+1"] = "#282828",
["bg+2"] = "#453d41",
["bg+3"] = "#484848",
["bg+4"] = "#52494e",
}
return M

View File

@ -0,0 +1,9 @@
local M = {}
function M.hello()
print("Hello, Gruber!")
end
return M