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
3 years ago
|
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 = "#AEB7DA",
|
||
|
gray1 = "#979FC0",
|
||
|
gray0 = "#8087A5",
|
||
|
black5 = "#696F8A",
|
||
|
black4 = "#52576F",
|
||
|
black3 = "#3B3F55",
|
||
|
black2 = "#24273A",
|
||
|
black1 = "#1F2232",
|
||
|
black0 = "#181926",
|
||
|
}
|
||
|
|
||
|
return color_palette
|