65 lines
1.2 KiB
Lua
65 lines
1.2 KiB
Lua
local M = {}
|
|
|
|
local palette = {
|
|
fg = "#ffffff",
|
|
bg = "#0f0b15",
|
|
bg_secondary = "#1d202f",
|
|
grey = "#807c9f",
|
|
grey_bright = "#807c9f",
|
|
red = "#f47359",
|
|
red_bright = "#ff6a7a",
|
|
green = "#29a444",
|
|
green_bright = "#00a392",
|
|
yellow = "#b58a52",
|
|
yellow_bright = "#df9080",
|
|
blue = "#3f95f6",
|
|
blue_bright = "#029fff",
|
|
magenta = "#d369af",
|
|
magenta_bright = "#af85ea",
|
|
magenta_subtle_bg = "#572454",
|
|
cyan = "#4fbaef",
|
|
cyan_bright = "#35afbf",
|
|
silver = "#b8c6d5",
|
|
silver_bright = "#ffffff",
|
|
}
|
|
|
|
M.palette = palette
|
|
|
|
M.colors = {
|
|
foreground = palette.fg,
|
|
background = palette.bg,
|
|
|
|
cursor_bg = palette.magenta,
|
|
cursor_fg = palette.fg,
|
|
cursor_border = palette.magenta,
|
|
|
|
selection_fg = palette.magenta_bright,
|
|
selection_bg = palette.magenta_subtle_bg,
|
|
|
|
scrollbar_thumb = palette.bg_secondary,
|
|
split = palette.bg_secondary,
|
|
|
|
ansi = {
|
|
palette.grey,
|
|
palette.red,
|
|
palette.green,
|
|
palette.yellow,
|
|
palette.blue,
|
|
palette.magenta,
|
|
palette.cyan,
|
|
palette.silver,
|
|
},
|
|
|
|
brights = {
|
|
palette.grey_bright,
|
|
palette.red_bright,
|
|
palette.green_bright,
|
|
palette.yellow_bright,
|
|
palette.blue_bright,
|
|
palette.magenta_bright,
|
|
palette.cyan_bright,
|
|
palette.silver_bright,
|
|
},
|
|
}
|
|
|
|
return M
|