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 = {
|
colors = {
|
||||||
primary = {
|
primary = {
|
||||||
background = "0x000000";
|
background = "#000000";
|
||||||
foreground = "0xffffff";
|
foreground = "#cdd6f4";
|
||||||
};
|
|
||||||
|
|
||||||
cursor = {
|
|
||||||
text = "0x2d2d2d";
|
|
||||||
cursor = "0xd3d0c8";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
normal = {
|
normal = {
|
||||||
black = "0x2d2d2d";
|
black = "#1e2127";
|
||||||
red = "0xf2777a";
|
red = "#e06c75";
|
||||||
green = "0x99cc99";
|
green = "#98c379";
|
||||||
yellow = "0xffcc66";
|
yellow = "#d19a66";
|
||||||
blue = "0x6699cc";
|
blue = "#61afef";
|
||||||
magenta = "0xcc99cc";
|
magenta = "#c678dd";
|
||||||
cyan = "0x66cccc";
|
cyan = "#56b6c2";
|
||||||
white = "0xd3d0c8";
|
white = "#abb2bf";
|
||||||
};
|
};
|
||||||
|
|
||||||
bright = {
|
bright = {
|
||||||
black = "0x747369";
|
black = "#5c6370";
|
||||||
red = "0xf2777a";
|
red = "#e06c75";
|
||||||
green = "0x99cc99";
|
green = "#98c379";
|
||||||
yellow = "0xffcc66";
|
yellow = "#d19a66";
|
||||||
blue = "0x6699cc";
|
blue = "#61afef";
|
||||||
magenta = "0xcc99cc";
|
magenta = "#c678dd";
|
||||||
cyan = "0x66cccc";
|
cyan = "#56b6c2";
|
||||||
white = "0xf2f0ec";
|
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 = {
|
font = {
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ return {
|
||||||
{
|
{
|
||||||
"chriskempson/base16-vim",
|
"chriskempson/base16-vim",
|
||||||
config = function()
|
config = function()
|
||||||
vim.cmd("colorscheme base16-eighties")
|
vim.cmd("colorscheme base16-onedark")
|
||||||
vim.cmd([[
|
vim.cmd([[
|
||||||
hi Normal guibg=NONE ctermbg=NONE
|
hi Normal guibg=NONE ctermbg=NONE
|
||||||
hi NonText guibg=NONE ctermbg=NONE
|
hi NonText guibg=NONE ctermbg=NONE
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,7 @@ call plug#end()
|
||||||
|
|
||||||
let mapleader = "\<Space>"
|
let mapleader = "\<Space>"
|
||||||
set background=dark
|
set background=dark
|
||||||
colorscheme base16-eighties
|
colorscheme base16-onedark
|
||||||
|
|
||||||
highlight Normal ctermbg=NONE guibg=NONE
|
highlight Normal ctermbg=NONE guibg=NONE
|
||||||
highlight NonText ctermbg=NONE guibg=NONE
|
highlight NonText ctermbg=NONE guibg=NONE
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue