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 = '#503f6e',
	inactive_titlebar_bg = '#271e38',
}
 
-- Command Palette
config.command_palette_bg_color = "#503f6e"
config.command_palette_fg_color = "#bea3d9"
 
return config