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.
29 lines
542 B
Lua
29 lines
542 B
Lua
local color_palette = {
|
|
rosewater = "#F5DFDA",
|
|
flamingo = "#F2CBCB",
|
|
pink = "#F5BFE7",
|
|
mauve = "#C59FF6",
|
|
red = "#F67E98",
|
|
maroon = "#F1949B",
|
|
peach = "#FEA571",
|
|
yellow = "#F1D8A4",
|
|
green = "#A1DF8E",
|
|
teal = "#85E0D1",
|
|
sky = "#89DCFD",
|
|
blue = "#83ABF9",
|
|
sapphire = "#34C3DC",
|
|
lavender = "#B8C1FE",
|
|
white = "#C5CFF5",
|
|
gray2 = "#A6AFD2",
|
|
gray1 = "#8289AA",
|
|
gray0 = "#5F6587",
|
|
black5 = "#4F5473",
|
|
black4 = "#3E435E",
|
|
black3 = "#2B3045",
|
|
black2 = "#24273A",
|
|
black1 = "#1F2233",
|
|
black0 = "#1A1B26",
|
|
}
|
|
|
|
return color_palette
|