dotfiles/wezterm.lua: use Selenized Dark theme

As of recent Wezterm release.
This commit is contained in:
Alan Orth 2024-01-30 08:50:50 +03:00
parent a520a68d04
commit 68d65ab43f
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 1 additions and 51 deletions

View File

@ -14,57 +14,7 @@ config.font = wezterm.font 'Cascadia Mono'
config.font_size = 13.5
-- This is where you actually apply your config choices
-- Selenized colors by Alan Orth
-- With Lua help from: https://github.com/gfguthrie/wezterm-canonical-solarized/blob/main/canonical_solarized.lua
config.colors = {
-- The default text color
foreground = '#adbcbc',
-- The default background color
background = '#103c48',
-- Overrides the cell background color when the current cell is occupied by the
-- cursor and the cursor style is set to Block
cursor_bg = '#53d6c7',
-- Overrides the text color when the current cell is occupied by the cursor
cursor_fg = '#103c48',
-- Specifies the border color of the cursor when the cursor style is set to Block,
-- or the color of the vertical or horizontal bar when the cursor style is set to
-- Bar or Underline.
cursor_border = '#52ad70',
-- the foreground color of selected text (disabled for Solarized / Selenized)
selection_fg = 'none',
-- the background color of selected text
selection_bg = '#184956',
-- The color of the scrollbar "thumb"; the portion that represents the current viewport
scrollbar_thumb = '#222222',
-- The color of the split lines between panes
split = '#84c747',
ansi = {
'#184956',
'#fa5750',
'#75b938',
'#dbb32d',
'#4695f7',
'#f275be',
'#41c7b9',
'#72898f',
},
brights = {
'#2d5b69',
'#ff665c',
'#84c747',
'#ebc13d',
'#58a3ff',
'#ff84cd',
'#53d6c7',
'#cad8d9',
},
}
config.color_scheme = 'Selenized Dark (Gogh)'
-- Disable bold colors for Solarized / Selenized
config.bold_brightens_ansi_colors = false