1
0
Fork 0
This commit is contained in:
Von Random 2023-11-04 20:30:07 +02:00
parent 2c37ccfd7e
commit bd7bf5ed0a
3 changed files with 14 additions and 14 deletions

View file

@ -4,12 +4,12 @@ local fn = require('functions')
local current = {}
-- colors
local color_scheme = 'GruvboxDark'
local tab_fg = '#ebdbb2'
local tab_bg = '#504945'
local tab_bg_active = '#282828'
local cursor_fg = '#ebdbb2'
local cursor_bg = '#d65d0e'
local color_scheme = 'Solarized Light (Gogh)'
local tab_fg = '#657b83'
local tab_bg = '#eee8d5'
local tab_bg_active = '#fdf6e3'
local cursor_fg = '#fdf6e3'
local cursor_bg = '#cb4b16'
-- fonts
local fonts = wt.config_builder()

View file

@ -3,12 +3,12 @@ local kb = require('keybinds')
local fn = require('functions')
-- colors
local color_scheme = 'Solarized Light (Gogh)'
local tab_fg = '#657b83'
local tab_bg = '#eee8d5'
local tab_bg_active = '#fdf6e3'
local cursor_fg = '#fdf6e3'
local cursor_bg = '#cb4b16'
local color_scheme = 'GruvboxDark'
local tab_fg = '#ebdbb2'
local tab_bg = '#504945'
local tab_bg_active = '#282828'
local cursor_fg = '#ebdbb2'
local cursor_bg = '#d65d0e'
-- misc
local cfg = wt.config_builder()