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 = "#F5E0DC",
|
|
flamingo = "#F2CDCD",
|
|
pink = "#F5C2E7",
|
|
mauve = "#CBA6F7",
|
|
red = "#F38BA8",
|
|
maroon = "#EBA0AC",
|
|
peach = "#FAB387",
|
|
yellow = "#F9E2AF",
|
|
green = "#A6E3A1",
|
|
teal = "#94E2D5",
|
|
sky = "#89DCEB",
|
|
blue = "#90C1FB",
|
|
sapphire = "#74C7EC",
|
|
lavender = "#B4BEFE",
|
|
white = "#C6D0F5",
|
|
gray2 = "#AEB7D9",
|
|
gray1 = "#969DBC",
|
|
gray0 = "#7E84A0",
|
|
black5 = "#666A83",
|
|
black4 = "#4E5167",
|
|
black3 = "#36374A",
|
|
black2 = "#1E1E2E",
|
|
black1 = "#181825",
|
|
black0 = "#101019",
|
|
}
|
|
|
|
return color_palette
|