summaryrefslogtreecommitdiff
path: root/lua/spacegray/palette.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/spacegray/palette.lua')
-rw-r--r--lua/spacegray/palette.lua33
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..49e429e5
--- /dev/null
+++ b/lua/spacegray/palette.lua
@@ -0,0 +1,33 @@
+local colors = {
+ fg = "#c8c9d1",
+ bg = "#212121",
+ alt_bg = "#2a2a2a",
+ accent = "#383d45",
+ white = "#c8c9d1",
+ 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