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.
38 lines
918 B
Lua
38 lines
918 B
Lua
-- NOTE: references for Catppuccin Latte
|
|
-- monochromatic: https://coolors.co/fbf8f4-e9e6e6-d7d3d9-c4c1cb-b2aebd-a09cb0-8e89a2-7b7794-696487-575279
|
|
-- analogous 1: https://coolors.co/de9584-dd7878-ec83d0-822fee-e64553-bb0d33-fe640b
|
|
-- analogous 2: https://coolors.co/7287fd-2a6ef5-04a5e5-e49320-209fb5-40a02b-179299
|
|
|
|
local color_palette = {
|
|
rosewater = "#dc8a78",
|
|
flamingo = "#DD7878",
|
|
pink = "#ea76cb",
|
|
mauve = "#8839EF",
|
|
red = "#D20F39",
|
|
maroon = "#E64553",
|
|
peach = "#FE640B",
|
|
yellow = "#df8e1d",
|
|
green = "#40A02B",
|
|
teal = "#179299",
|
|
sky = "#04A5E5",
|
|
sapphire = "#209FB5",
|
|
blue = "#1e66f5",
|
|
lavender = "#7287FD",
|
|
|
|
text = "#4C4F69",
|
|
subtext1 = "#5C5F77",
|
|
subtext0 = "#6C6F85",
|
|
overlay2 = "#7C7F93",
|
|
overlay1 = "#8C8FA1",
|
|
overlay0 = "#9CA0B0",
|
|
surface2 = "#ACB0BE",
|
|
surface1 = "#BCC0CC",
|
|
surface0 = "#CCD0DA",
|
|
|
|
base = "#EFF1F5",
|
|
mantle = "#E6E9EF",
|
|
crust = "#DCE0E8",
|
|
}
|
|
|
|
return color_palette
|