diff --git a/ghostty/.config/ghostty/config b/ghostty/.config/ghostty/config index 9205e18..c882b95 100644 --- a/ghostty/.config/ghostty/config +++ b/ghostty/.config/ghostty/config @@ -1,4 +1,4 @@ -theme = dark:default-dark,light:default-light +theme = dark:monodark,light:monolight # enforce legible text on washed-out colors (esp. light theme) minimum-contrast = 1.15 diff --git a/ghostty/.config/ghostty/themes/monodark b/ghostty/.config/ghostty/themes/monodark new file mode 100644 index 0000000..efe8d3f --- /dev/null +++ b/ghostty/.config/ghostty/themes/monodark @@ -0,0 +1,31 @@ +# Scheme: Mono Dark +# Two-color monochrome variant of default-dark: same bg, fg replaces every +# text color. Slot 0 stays bg (TUIs use it as a background color). +background = 181818 +foreground = d8d8d8 + +selection-background = d8d8d8 +selection-foreground = 181818 + +palette = 0=#181818 +palette = 1=#d8d8d8 +palette = 2=#d8d8d8 +palette = 3=#d8d8d8 +palette = 4=#d8d8d8 +palette = 5=#d8d8d8 +palette = 6=#d8d8d8 +palette = 7=#d8d8d8 +palette = 8=#d8d8d8 +palette = 9=#d8d8d8 +palette = 10=#d8d8d8 +palette = 11=#d8d8d8 +palette = 12=#d8d8d8 +palette = 13=#d8d8d8 +palette = 14=#d8d8d8 +palette = 15=#d8d8d8 +palette = 16=#d8d8d8 +palette = 17=#d8d8d8 +palette = 18=#d8d8d8 +palette = 19=#d8d8d8 +palette = 20=#d8d8d8 +palette = 21=#d8d8d8 diff --git a/ghostty/.config/ghostty/themes/monolight b/ghostty/.config/ghostty/themes/monolight new file mode 100644 index 0000000..fef9ed0 --- /dev/null +++ b/ghostty/.config/ghostty/themes/monolight @@ -0,0 +1,31 @@ +# Scheme: Mono Light +# Two-color monochrome variant of default-light: same bg, fg replaces every +# text color. Slot 0 stays bg (TUIs use it as a background color). +background = f8f8f8 +foreground = 383838 + +selection-background = 383838 +selection-foreground = f8f8f8 + +palette = 0=#f8f8f8 +palette = 1=#383838 +palette = 2=#383838 +palette = 3=#383838 +palette = 4=#383838 +palette = 5=#383838 +palette = 6=#383838 +palette = 7=#383838 +palette = 8=#383838 +palette = 9=#383838 +palette = 10=#383838 +palette = 11=#383838 +palette = 12=#383838 +palette = 13=#383838 +palette = 14=#383838 +palette = 15=#383838 +palette = 16=#383838 +palette = 17=#383838 +palette = 18=#383838 +palette = 19=#383838 +palette = 20=#383838 +palette = 21=#383838 diff --git a/nvim/.config/nvim/lua/settings.lua b/nvim/.config/nvim/lua/settings.lua index 066dea5..f1a2272 100644 --- a/nvim/.config/nvim/lua/settings.lua +++ b/nvim/.config/nvim/lua/settings.lua @@ -34,9 +34,9 @@ vim.cmd([[ autocmd ColorScheme * highlight Constant ctermfg=3 autocmd ColorScheme * highlight String ctermfg=2 autocmd ColorScheme * highlight Comment cterm=italic ctermfg=lightgray - autocmd ColorScheme * highlight Folded cterm=italic ctermfg=lightgray ctermbg=18 syntax on set notermguicolors colorscheme default ]]) +-- autocmd ColorScheme * highlight Folded cterm=italic ctermfg=lightgray ctermbg=18 diff --git a/opencode/.config/opencode/opencode.json b/opencode/.config/opencode/opencode.json index ff11ac4..c6e9eaf 100644 --- a/opencode/.config/opencode/opencode.json +++ b/opencode/.config/opencode/opencode.json @@ -1,4 +1,11 @@ { "$schema": "https://opencode.ai/config.json", - "theme": "base16-default" + "theme": "base16-default", + "mcp": { + "playwright": { + "type": "local", + "command": ["npx", "@playwright/mcp@latest"], + "enabled": true + } + } }