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.
36 lines
873 B
Lua
36 lines
873 B
Lua
-- NOTE: references for Catppuccin Moccha
|
|
-- monochromatic: https://coolors.co/c6d0f5-aeb7d9-969dbc-7e84a0-666a83-4e5167-36374a-1e1e2e-12121c-07070a
|
|
-- analogous 1: https://coolors.co/f5e0dc-f2cdcd-f5c2e7-cba6f7-eba0ac-f38ba8-fab387
|
|
-- analogous 2: https://coolors.co/bfb7e4-8caaee-99d1db-e5c890-85c1dc-a6d189-81c8be
|
|
|
|
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",
|
|
|
|
text = "#C6D0F5",
|
|
overlay2 = "#AEB7D9",
|
|
overlay1 = "#969DBC",
|
|
overlay0 = "#7E84A0",
|
|
surface2 = "#666A83",
|
|
surface1 = "#4E5167",
|
|
surface0 = "#36374A",
|
|
|
|
crust = "#11111B",
|
|
mantle = "#181825",
|
|
base = "#1E1E2E",
|
|
}
|
|
|
|
return color_palette
|