reverse terminal white and black

This commit is contained in:
Michael Chris Lopez
2021-09-14 16:07:08 +08:00
parent 052cbf8426
commit 178aa88616
14 changed files with 48 additions and 48 deletions

View File

@@ -48,7 +48,7 @@ return function(name, theme, palette, terminal)
foreground = fg,
selection_background = theme.Visual.bg.hex,
selection_foreground = fg,
url_color = terminal.colors[14].hex,
url_color = terminal.colors[13].hex,
cursor = fg,
active_tab_background = theme.Search.bg.hex,
active_tab_foreground = fg,

View File

@@ -2,22 +2,22 @@ local lush = require "lush"
local p = require "zenbones.palette"
local colors = {
p.stone,
p.sand,
p.rose,
p.leaf,
p.wood,
p.water,
p.blossom,
p.sky,
p.sand,
p.stone.li(16),
p.stone,
p.sand.sa(4).da(10),
p.rose.sa(20).da(10),
p.leaf.sa(20).da(10),
p.wood.sa(18).da(10),
p.water.sa(20).da(10),
p.blossom.sa(24).da(10),
p.sky.sa(20).da(10),
p.sand.sa(4).da(10),
p.stone.li(16),
}
local M = {}