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 = "#DC907F",
|
|
flamingo = "#DD7878",
|
|
pink = "#EC83D0",
|
|
mauve = "#822FEE",
|
|
red = "#BB0D33",
|
|
maroon = "#E63B4A",
|
|
peach = "#FE640B",
|
|
yellow = "#E49320",
|
|
green = "#40A02B",
|
|
teal = "#179299",
|
|
sky = "#04A5E5",
|
|
blue = "#1D65F5",
|
|
sapphire = "#209FB5",
|
|
lavender = "#7287FD",
|
|
white = "#575279",
|
|
gray2 = "#6C6789",
|
|
gray1 = "#817C98",
|
|
gray0 = "#9691A8",
|
|
black5 = "#AAA6B7",
|
|
black4 = "#BEBAC6",
|
|
black0 = "#D0CDD4",
|
|
black3 = "#E1DCE0",
|
|
black1 = "#ECEBEB",
|
|
black2 = "#FBF8F4",
|
|
}
|
|
|
|
return color_palette
|