mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
updated themes to better match
This commit is contained in:
parent
cc8ddeae6c
commit
c06484118e
3 changed files with 20 additions and 34 deletions
|
|
@ -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 = {
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ call plug#end()
|
|||
|
||||
let mapleader = "\<Space>"
|
||||
set background=dark
|
||||
colorscheme base16-eighties
|
||||
colorscheme base16-onedark
|
||||
|
||||
highlight Normal ctermbg=NONE guibg=NONE
|
||||
highlight NonText ctermbg=NONE guibg=NONE
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue