diff options
author | christianchiarulli <[email protected]> | 2021-07-12 12:51:49 -0400 |
---|---|---|
committer | christianchiarulli <[email protected]> | 2021-07-12 12:51:49 -0400 |
commit | e780972b3061bb2bdd49639870aa7a1b7727cba4 (patch) | |
tree | e0e95943f611f64a8fce4802d0db2bb423cb253b /lua/spacegray/palette.lua | |
parent | 83602dc56304d9b626860c4447d65430473207d0 (diff) |
spacegray now in lua
Diffstat (limited to 'lua/spacegray/palette.lua')
-rw-r--r-- | lua/spacegray/palette.lua | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/lua/spacegray/palette.lua b/lua/spacegray/palette.lua new file mode 100644 index 00000000..a49c29e7 --- /dev/null +++ b/lua/spacegray/palette.lua @@ -0,0 +1,33 @@ +local colors = { + fg = "#c8c9d1", + bg = "#212121", + alt_bg = "#2a2a2a", + accent = "#383d45", + white = "#D8DEE9", + gray = "#858585", + light_gray = "#c8c9c1", + blue = "#5486c0", + gray_blue = "#66899d", + cyan = "#65a7c5", + red = "#b04b57", + green = "#87b379", + light_green = "#b2d77c", + yellow = "#eeba5a", + orange = "#c6735a", + purple = "#bf83c1", + pale_purple = "#7199ee", + magenta = "#D16D9E", + cursor_fg = "#515052", + cursor_bg = "#AEAFAD", + sign_add = "#587c0c", + sign_change = "#0c7d9d", + sign_delete = "#94151b", + error_red = "#F44747", + warning_orange = "#ff8800", + info_yellow = "#FFCC66", + hint_blue = "#4FC1FF", + purple_test = "#ff00ff", + cyan_test = "#00ffff", +} + +return colors
\ No newline at end of file |