Adjust colors in pina neovim theme
This commit is contained in:
		@@ -4,7 +4,8 @@
 | 
			
		||||
" Upstream: https://github.com/bjarneo/omarchy-pina-theme/blob/main/pina.nvim/colors/pina.vim
 | 
			
		||||
 | 
			
		||||
" This file has been modified slightly by removing some of the "hi" commands
 | 
			
		||||
" related to neovim plugins which I do not use.
 | 
			
		||||
" related to neovim plugins which I do not use, and by adding/changing a few
 | 
			
		||||
" colors as well.
 | 
			
		||||
 | 
			
		||||
" NOTE: The name, maintainer, and license lines from the original are copied
 | 
			
		||||
" below in their original state. However, I suspect these were inaccurate names
 | 
			
		||||
@@ -27,9 +28,10 @@ endif
 | 
			
		||||
let g:colors_name = "pina"
 | 
			
		||||
 | 
			
		||||
" Color definitions
 | 
			
		||||
let background = "#171a18"
 | 
			
		||||
let foreground = "#d4d5d5"
 | 
			
		||||
let cursor     = "#d4d5d5"
 | 
			
		||||
let background   = "#171a18"
 | 
			
		||||
let foreground   = "#d4d5d5"
 | 
			
		||||
let cursor       = "#d4d5d5"
 | 
			
		||||
let cursor_lines = "#2c2f2d"
 | 
			
		||||
 | 
			
		||||
" Colors
 | 
			
		||||
let color0  = "#171a18"
 | 
			
		||||
@@ -79,8 +81,9 @@ endif
 | 
			
		||||
" Basic highlight groups
 | 
			
		||||
exe "hi Normal guifg=" . foreground . " guibg=" . background . " ctermfg=7 ctermbg=0"
 | 
			
		||||
exe "hi Cursor guifg=" . background . " guibg=" . cursor . " ctermfg=0 ctermbg=7"
 | 
			
		||||
exe "hi CursorLine guibg=" . color8 . " ctermbg=8"
 | 
			
		||||
exe "hi CursorColumn guibg=" . color8 . " ctermbg=8"
 | 
			
		||||
exe "hi CursorLine guibg=" . cursor_lines . " ctermbg=8"
 | 
			
		||||
exe "hi CursorColumn guibg=" . cursor_lines . " ctermbg=8"
 | 
			
		||||
exe "hi ColorColumn guibg=" . cursor_lines . " ctermbg=8"
 | 
			
		||||
exe "hi LineNr guifg=" . color8 . " ctermfg=8"
 | 
			
		||||
exe "hi CursorLineNr guifg=" . color7 . " ctermfg=7"
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user