summaryrefslogtreecommitdiff
path: root/lua/spacegray/palette.lua
diff options
context:
space:
mode:
authorchristianchiarulli <[email protected]>2021-08-11 16:33:41 -0400
committerchristianchiarulli <[email protected]>2021-08-11 16:33:41 -0400
commit83013c0d4f1467f546c38719c61909decfcb8151 (patch)
tree143773ea73c64d953db699e6e621926e44653fc2 /lua/spacegray/palette.lua
parentf6407e0bdb9c2875bc8f186929ce183af391b2a9 (diff)
parent5a7630cac761e91335d2f25cb07a81271569c791 (diff)
Merge branch 'rolling' of github.com:ChristianChiarulli/LunarVim
Diffstat (limited to 'lua/spacegray/palette.lua')
-rw-r--r--lua/spacegray/palette.lua43
1 files changed, 25 insertions, 18 deletions
diff --git a/lua/spacegray/palette.lua b/lua/spacegray/palette.lua
index 49e429e5..924482fd 100644
--- a/lua/spacegray/palette.lua
+++ b/lua/spacegray/palette.lua
@@ -1,21 +1,27 @@
local colors = {
- fg = "#c8c9d1",
- bg = "#212121",
- alt_bg = "#2a2a2a",
- accent = "#383d45",
- white = "#c8c9d1",
- gray = "#858585",
+ fg = "#ABB2BF",
+ bg = "#202020",
+ alt_bg = "#262626",
+ dark = "#222222",
+ accent = "#AAAAAA",
+ popup_back = "#2D2D30",
+ search_orange = "#613214",
+ search_blue = "#5e81ac",
+ white = "#D8DEE9",
+ gray = "#9BA1AB",
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",
+ blue = "#5f8ccd",
+ dark_blue = "#223E55",
+ light_blue = "#8dc0d5",
+ green = "#83ba8b",
+ cyan = "#4EC9B0",
+ light_green = "#B5CEA8",
+ red = "#D16969",
+ orange = "#D1866B",
+ light_red = "#CA535F",
+ yellow = "#ECCC8E",
+ yellow_orange = "#D7BA7D",
+ purple = "#BF82B4",
magenta = "#D16D9E",
cursor_fg = "#515052",
cursor_bg = "#AEAFAD",
@@ -26,8 +32,9 @@ local colors = {
warning_orange = "#ff8800",
info_yellow = "#FFCC66",
hint_blue = "#4FC1FF",
- purple_test = "#ff00ff",
- cyan_test = "#00ffff",
+ purple_test = "#ff007c",
+ cyan_test = "#00dfff",
+ ui_blue = "#264F78",
}
return colors