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
958 B
Lua
29 lines
958 B
Lua
local color_palette = {
|
|
rosewater = "#E09D90", -- Rosewater
|
|
flamingo = "#E79C9C", -- Flamingo
|
|
mauve = "#AC61DF", -- Mauve -- done
|
|
pink = "#EF9AD9", -- Pink -- done
|
|
red = "#E84746", -- Red -- done -
|
|
maroon = "#c96765", -- Maroon -- done
|
|
peach = "#E99726", -- Peach -- done -
|
|
yellow = "#EABE24", -- Yellow -- done -
|
|
green = "#89B517", -- Green -- done -
|
|
blue = "#4877D7", -- Blue -- done -
|
|
sky = "#3FC4D9", -- Sky -- done
|
|
teal = "#149C9B", -- Teal -- done -
|
|
lavender = "#939AFB", -- Lavender -- done
|
|
white = "#343b58", -- White -- works?
|
|
gray2 = "#424968", -- Gray2
|
|
gray1 = "#505677", -- Gray1
|
|
gray0 = "#606689", -- Gray0 -- done -
|
|
black4 = "#cfd8dc", -- Black4
|
|
black3 = "#eff3f4", -- Black3
|
|
black2 = "#FCFCFC", -- Black2 -- done
|
|
black1 = "#F3F3F3", -- Black1
|
|
black0 = "#D3D0D2", -- Black0
|
|
}
|
|
|
|
-- NOTE: we might have to remake our current naming convention for gray# and black#
|
|
|
|
return color_palette
|