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.
31 lines
550 B
Lua
31 lines
550 B
Lua
3 years ago
|
local color_palette = {
|
||
|
rosewater = "#DC907F",
|
||
|
flamingo = "#DD7878",
|
||
|
pink = "#EC83D0",
|
||
|
mauve = "#9247ED", --
|
||
|
red = "#BB0D33",
|
||
|
maroon = "#E63B4A",
|
||
|
peach = "#FE640B",
|
||
|
yellow = "#E49320",
|
||
|
green = "#53A947", --
|
||
|
teal = "#23979F",
|
||
|
sky = "#04A5E5",
|
||
|
blue = "#3474EE",
|
||
|
sapphire = "#209FB5",
|
||
|
lavender = "#7287FD",
|
||
|
white = "#575279",
|
||
|
gray2 = "#696486",
|
||
|
gray1 = "#7B7794",
|
||
|
gray0 = "#8E89A1",
|
||
|
black5 = "#A09BAE",
|
||
|
black4 = "#B2AEBC",
|
||
|
black0 = "#C4C0C9",
|
||
|
black3 = "#D7D2D6",
|
||
|
black1 = "#E9E5E4",
|
||
|
black2 = "#FBF7F1",
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
return color_palette
|