mirror of https://github.com/sgoudham/nvim.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.3 KiB
Lua
53 lines
1.3 KiB
Lua
local color_palette = {
|
|
pink = "#F5BFE7", -- Pink -- done -- cotton
|
|
flamingo = "#F2CBCB", -- Flamingo -- done
|
|
cotton = "#F3DCAC",
|
|
yellow = "#F1D0D8", -- Yellow -- done -
|
|
-- cotton = "#B6FFEA",
|
|
rosewater = "#F5DFDA", -- Rosewater
|
|
mauve = "#C59FF6", -- Mauve -- done -
|
|
red = "#F67E98", -- Red -- done
|
|
maroon = "#F1949B", -- Maroon -- done
|
|
peach = "#FEA571", -- Peach -- done - -
|
|
green = "#9CDA83", -- Green -- done -
|
|
-- sapphire = "#2AC3DE",
|
|
-- sapphire = "#99FFCD",
|
|
-- sapphire = "#F8DEA9",
|
|
-- sapphire = "#B6FFCE",
|
|
-- sapphire = "#2AC3DE",
|
|
|
|
-- green = "#98C379", -- Green -- done -
|
|
sapphire = "#34C3DC",
|
|
-- cotton = "#E7F0C3",
|
|
-- cotton = "#CAF2D7",
|
|
-- cotton = "#CDF0EA",
|
|
-- cotton = "#F0D9FF",
|
|
-- cotton = "#F6AE99",
|
|
-- cotton = "#C1FFD7",
|
|
-- cotton = "#F3E6E3",
|
|
-- cotton = "#FFBA92",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- sapphire = "#2AC3DE",
|
|
|
|
blue = "#83ABF9", -- Blue -- done
|
|
teal = "#78DCCC", -- Teal -- done
|
|
sky = "#89DCFD", -- Sky -- done
|
|
lavender = "#C1CAFE", -- Lavender -- done
|
|
white = "#C5CFF5", -- White -- done
|
|
gray2 = "#B9C0DB", -- Gray2
|
|
gray1 = "#6F7599", -- Gray1
|
|
gray0 = "#5E6487", -- Gray0
|
|
black4 = "#3E435E", -- Black4
|
|
black3 = "#2B3045", -- Black3
|
|
black2 = "#24273A", -- Black2 -- done
|
|
black1 = "#1F2233", -- Black1
|
|
black0 = "#1A1B26", -- Black0
|
|
}
|
|
|
|
return color_palette
|