move to backup
This commit is contained in:
parent
294dc66380
commit
a0e3d792a9
182 changed files with 156 additions and 103 deletions
65
bak/modules/wezterm/config/theme.lua
Normal file
65
bak/modules/wezterm/config/theme.lua
Normal file
|
|
@ -0,0 +1,65 @@
|
|||
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.bg,
|
||||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue