Squirrelsong dark theme for WezTerm

Installation from GitHub

  1. Copy the squirrelsong-dark.toml to ~/.config/wezterm/colors.

  2. Update your WezTerm config, ~/.wezterm.lua, so it looks something like this:

local wezterm = require 'wezterm'
local config = wezterm.config_builder()
 
-- Colors
config.color_scheme = 'Squirrelsong Dark'
 
config.window_frame = {
	-- Fancy tab bar
	active_titlebar_bg = '#4d3b2e',
	inactive_titlebar_bg = '#292019',
}
 
-- Command Palette
config.command_palette_bg_color = "#4d3b2e"
config.command_palette_fg_color = "#bfac99"
 
return config