From c06484118ec6b29c08e1b887cf6945e6d0966ec9 Mon Sep 17 00:00:00 2001 From: Bryan Ramos Date: Thu, 8 Aug 2024 09:40:10 -0400 Subject: [PATCH] updated themes to better match --- .../modules/alacritty/config/alacritty.nix | 50 +++++++------------ .../config/lazyvim/lua/plugins/core.lua | 2 +- .../modules/utils/modules/vim/config/vimrc | 2 +- 3 files changed, 20 insertions(+), 34 deletions(-) diff --git a/src/user/modules/gui/modules/alacritty/config/alacritty.nix b/src/user/modules/gui/modules/alacritty/config/alacritty.nix index e620f4b..7e7ea9b 100644 --- a/src/user/modules/gui/modules/alacritty/config/alacritty.nix +++ b/src/user/modules/gui/modules/alacritty/config/alacritty.nix @@ -24,45 +24,31 @@ in colors = { primary = { - background = "0x000000"; - foreground = "0xffffff"; - }; - - cursor = { - text = "0x2d2d2d"; - cursor = "0xd3d0c8"; + background = "#000000"; + foreground = "#cdd6f4"; }; normal = { - black = "0x2d2d2d"; - red = "0xf2777a"; - green = "0x99cc99"; - yellow = "0xffcc66"; - blue = "0x6699cc"; - magenta = "0xcc99cc"; - cyan = "0x66cccc"; - white = "0xd3d0c8"; + black = "#1e2127"; + red = "#e06c75"; + green = "#98c379"; + yellow = "#d19a66"; + blue = "#61afef"; + magenta = "#c678dd"; + cyan = "#56b6c2"; + white = "#abb2bf"; }; bright = { - black = "0x747369"; - red = "0xf2777a"; - green = "0x99cc99"; - yellow = "0xffcc66"; - blue = "0x6699cc"; - magenta = "0xcc99cc"; - cyan = "0x66cccc"; - white = "0xf2f0ec"; + black = "#5c6370"; + red = "#e06c75"; + green = "#98c379"; + yellow = "#d19a66"; + blue = "#61afef"; + magenta = "#c678dd"; + cyan = "#56b6c2"; + white = "#ffffff"; }; - - indexedColors = [ - { index = 16; color = "0xf99157"; } - { index = 17; color = "0xd27b53"; } - { index = 18; color = "0x393939"; } - { index = 19; color = "0x515151"; } - { index = 20; color = "0xa09f93"; } - { index = 21; color = "0xe8e6df"; } - ]; }; font = { diff --git a/src/user/modules/utils/modules/neovim/config/lazyvim/lua/plugins/core.lua b/src/user/modules/utils/modules/neovim/config/lazyvim/lua/plugins/core.lua index 9a3026e..52fd6cb 100644 --- a/src/user/modules/utils/modules/neovim/config/lazyvim/lua/plugins/core.lua +++ b/src/user/modules/utils/modules/neovim/config/lazyvim/lua/plugins/core.lua @@ -2,7 +2,7 @@ return { { "chriskempson/base16-vim", config = function() - vim.cmd("colorscheme base16-eighties") + vim.cmd("colorscheme base16-onedark") vim.cmd([[ hi Normal guibg=NONE ctermbg=NONE hi NonText guibg=NONE ctermbg=NONE diff --git a/src/user/modules/utils/modules/vim/config/vimrc b/src/user/modules/utils/modules/vim/config/vimrc index 7bfcb90..fc15ae9 100644 --- a/src/user/modules/utils/modules/vim/config/vimrc +++ b/src/user/modules/utils/modules/vim/config/vimrc @@ -28,7 +28,7 @@ call plug#end() let mapleader = "\" set background=dark -colorscheme base16-eighties +colorscheme base16-onedark highlight Normal ctermbg=NONE guibg=NONE highlight NonText ctermbg=NONE guibg=NONE