adapts theme colors
This commit is contained in:
parent
0519ba5513
commit
9a3d3dbc35
2 changed files with 25 additions and 23 deletions
|
|
@ -2,23 +2,24 @@ local M = {}
|
|||
|
||||
local palette = {
|
||||
fg = "#ffffff",
|
||||
bg = "#0d0911",
|
||||
bg_secondary = "#231d2b",
|
||||
grey = "#605470",
|
||||
grey_bright = "#847a91",
|
||||
red = "#be0f58",
|
||||
red_bright = "#e61565",
|
||||
green = "#218b72",
|
||||
green_bright = "#36d9b8",
|
||||
yellow = "#d8a428",
|
||||
yellow_bright = "#f0c674",
|
||||
blue = "#1d74c5",
|
||||
blue_bright = "#49a8dd",
|
||||
magenta = "#9e3a96",
|
||||
magenta_bright = "#d957ce",
|
||||
cyan = "#2692a8",
|
||||
cyan_bright = "#36c3d9",
|
||||
silver = "#605470",
|
||||
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",
|
||||
}
|
||||
|
||||
|
|
@ -28,12 +29,12 @@ M.colors = {
|
|||
foreground = palette.fg,
|
||||
background = palette.bg,
|
||||
|
||||
cursor_bg = palette.grey_bright,
|
||||
cursor_fg = palette.bg_secondary,
|
||||
cursor_border = palette.grey_bright,
|
||||
cursor_bg = palette.magenta,
|
||||
cursor_fg = palette.fg,
|
||||
cursor_border = palette.magenta,
|
||||
|
||||
selection_fg = palette.grey_bright,
|
||||
selection_bg = palette.bg_secondary,
|
||||
selection_fg = palette.magenta_bright,
|
||||
selection_bg = palette.magenta_subtle_bg,
|
||||
|
||||
scrollbar_thumb = palette.bg_secondary,
|
||||
split = palette.bg_secondary,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue