local wezterm = require 'wezterm' local hostname = wezterm.hostname() --local custom = wezterm.color.get_builtin_schemes()["Catppuccin Mocha"] --custom.background = '#040404' --custom.foreground = '#fcfcfc' local font_size font_size = 16 if hostname == 'bolt' then font_size = 14 end return { font = wezterm.font 'Go Mono', font_size = font_size, initial_rows = 38, initial_cols = 150, default_cursor_style = 'SteadyUnderline', cursor_thickness = '5px', hide_tab_bar_if_only_one_tab = true, window_background_opacity = 0.85, window_background_gradient = { colors = { '#101010', '#040404' }, orientation = { Linear = { angle = -90.0 } }, }, visual_bell = { fade_in_function = 'EaseIn', fade_in_duration_ms = 50, fade_out_function = 'EaseOut', fade_out_duration_ms = 50, }, window_padding = { left = 4, right = 4, top = 0, bottom = 0, }, colors = { visual_bell = '#040404', foreground = '#fcfcfc', -- background = '#040404', cursor_bg = '#eeee00', cursor_fg = '#eeeeff', cursor_border = '#eeee00', selection_fg = '#000000', selection_bg = '#f4bb44', ansi = { '#0d0d0d', '#ff301b', '#a0e521', '#ffc620', '#1ba6fa', '#8763b8', '#21deef', '#fbebeb', }, brights = { '#6d7070', '#ff4352', '#b8e466', '#ffd750', '#1ba6fa', '#a578ea', '#73fbf1', '#fefef8', }, }, }