mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
28 lines
701 B
Lua
28 lines
701 B
Lua
local palette = {
|
|
---@deprecated for backwards compatibility
|
|
_experimental_nc = "#16141f",
|
|
nc = "#16141f",
|
|
base = "#181722", -- idk
|
|
surface = "#1f1d2e", -- dark blue
|
|
overlay = "#26233a", -- dark blue
|
|
muted = "#6e6a86", -- gray?
|
|
subtle = "#908caa", -- gray?
|
|
text = "#e0def4", -- light light blue
|
|
love = "#e89b9f", -- red?
|
|
ocean = "#b2b13c", -- orange?
|
|
blu = "#8487c7", -- ???
|
|
crimson = "#fa4678", -- red
|
|
gold = "#f59d56",
|
|
rose = "#ff82b4",
|
|
calm = "#23ff87", -- green
|
|
sand = "#cecda7",
|
|
foam = "#7acfd8", -- turquoise
|
|
pink = "#ebb9bf", -- pink
|
|
iris = "#c4a7e7", --
|
|
highlight_low = "#21202e",
|
|
highlight_med = "#403d52",
|
|
highlight_high = "#524f67",
|
|
none = "NONE",
|
|
}
|
|
|
|
return palette
|