20 lines
567 B
Lua
20 lines
567 B
Lua
-- cyberdream theme for wezterm
|
|
return {
|
|
foreground = "#16181a",
|
|
background = "#ffffff",
|
|
|
|
cursor_bg = "#16181a",
|
|
cursor_fg = "#ffffff",
|
|
cursor_border = "#16181a",
|
|
|
|
selection_fg = "#16181a",
|
|
selection_bg = "#acacac",
|
|
|
|
scrollbar_thumb = "#ffffff",
|
|
split = "#ffffff",
|
|
|
|
ansi = { "#ffffff", "#d11500", "#008b0c", "#997b00", "#0057d1", "#a018ff", "#008c99", "#16181a" },
|
|
brights = { "#acacac", "#d11500", "#008b0c", "#997b00", "#0057d1", "#a018ff", "#008c99", "#16181a" },
|
|
indexed = { [16] = "#d17c00", [17] = "#d11500" },
|
|
}
|