From 76a07e9b0177018072ed796389510492140848ab Mon Sep 17 00:00:00 2001 From: Daniel Hill Date: Tue, 3 Jan 2023 21:29:50 -0500 Subject: [PATCH] chore: initial commit with some colors defined --- lua/gruber-darker/colors.lua | 19 +++++++++++++++++++ lua/gruber-darker/init.lua | 9 +++++++++ 2 files changed, 28 insertions(+) create mode 100644 lua/gruber-darker/colors.lua create mode 100644 lua/gruber-darker/init.lua diff --git a/lua/gruber-darker/colors.lua b/lua/gruber-darker/colors.lua new file mode 100644 index 0000000..e0c0f41 --- /dev/null +++ b/lua/gruber-darker/colors.lua @@ -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 + diff --git a/lua/gruber-darker/init.lua b/lua/gruber-darker/init.lua new file mode 100644 index 0000000..fb66acf --- /dev/null +++ b/lua/gruber-darker/init.lua @@ -0,0 +1,9 @@ +local M = {} + +function M.hello() + print("Hello, Gruber!") +end + +return M + +