Created
August 27, 2025 19:55
-
-
Save even4void/a7b6d3923d8f1fd443c29213dcbdfbfd to your computer and use it in GitHub Desktop.
A more quiet color scheme for Neovim
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let g:colors_name = 'morequiet' | |
| hi! link @comment.error.comment Todo | |
| hi! link @comment.note.comment Todo | |
| hi! link @comment.warning.comment Todo | |
| hi! link Added Normal | |
| hi! link Boolean Constant | |
| hi! link Changed Normal | |
| hi! link Character Constant | |
| hi! link Conditional Statement | |
| hi! link CurSearch IncSearch | |
| hi! link Debug Special | |
| hi! link Define PreProc | |
| hi! link Delimiter Special | |
| hi! link Exception Statement | |
| hi! link Float Constant | |
| hi! link Function Identifier | |
| hi! link Include PreProc | |
| hi! link Keyword Statement | |
| hi! link Label Statement | |
| hi! link Macro PreProc | |
| hi! link MessageWindow Pmenu | |
| hi! link Number Constant | |
| hi! link Operator Statement | |
| hi! link PopupNotification Todo | |
| hi! link PopupSelected PmenuSel | |
| hi! link PreCondit PreProc | |
| hi! link QuickFixLine Visual | |
| hi! link Removed Normal | |
| hi! link Repeat Statement | |
| hi! link SpecialChar Special | |
| hi! link SpecialComment Special | |
| hi! link StatusLineTerm StatusLine | |
| hi! link StatusLineTermNC StatusLineNC | |
| hi! link StorageClass Type | |
| hi! link String Constant | |
| hi! link Structure Type | |
| hi! link TabLine StatusLine | |
| hi! link TabLineFill StatusLine | |
| hi! link TabLineSel StatusLineNC | |
| hi! link Tag Special | |
| hi! link Terminal Normal | |
| hi! link Typedef Type | |
| hi! link debugBreakpoint ModeMsg | |
| hi! link debugPC CursorLine | |
| hi! link lCursor Cursor | |
| hi ColorColumn ctermfg=252 | |
| hi Comment cterm=bold | |
| hi Conceal ctermfg=NONE | |
| hi Constant ctermfg=NONE | |
| hi Cursor cterm=reverse | |
| hi CursorColumn ctermfg=NONE | |
| hi CursorIM ctermfg=NONE | |
| hi CursorLine cterm=underline | |
| hi CursorLineFold cterm=underline | |
| hi CursorLineNr cterm=bold | |
| hi CursorLineSign cterm=underline | |
| hi DiffAdd ctermfg=114 ctermbg=16 cterm=reverse | |
| hi DiffChange ctermfg=146 ctermbg=16 cterm=reverse | |
| hi DiffDelete ctermfg=174 ctermbg=16 cterm=reverse | |
| hi DiffText ctermfg=176 ctermbg=16 cterm=reverse | |
| hi Directory ctermfg=NONE | |
| hi EndOfBuffer ctermfg=NONE | |
| hi Error cterm=bold,reverse | |
| hi ErrorMsg cterm=bold,reverse | |
| hi FoldColumn ctermfg=NONE | |
| hi Folded ctermfg=NONE | |
| hi Identifier ctermfg=NONE | |
| hi Ignore ctermfg=NONE | |
| hi IncSearch cterm=bold,reverse,underline | |
| hi LineNr ctermfg=NONE | |
| hi MatchParen cterm=bold,underline | |
| hi ModeMsg cterm=bold | |
| hi MoreMsg ctermfg=NONE | |
| hi NonText ctermfg=NONE | |
| hi Normal ctermfg=NONE | |
| hi Pmenu cterm=NONE | |
| hi PmenuSbar cterm=reverse | |
| hi PmenuSel cterm=underline | |
| hi PmenuThumb ctermfg=NONE | |
| hi PreProc ctermfg=NONE | |
| hi Question cterm=standout | |
| hi Search cterm=reverse | |
| hi SignColumn cterm=reverse | |
| hi Special ctermfg=NONE | |
| hi SpecialKey cterm=bold | |
| hi SpellBad cterm=underline | |
| hi SpellCap cterm=underline | |
| hi SpellLocal cterm=underline | |
| hi SpellRare cterm=underline | |
| hi Statement ctermfg=NONE | |
| hi StatusLine cterm=bold,reverse | |
| hi StatusLineNC cterm=bold,underline | |
| hi Title ctermfg=NONE | |
| hi Todo cterm=bold,reverse | |
| hi ToolbarButton cterm=bold,reverse | |
| hi ToolbarLine cterm=reverse | |
| hi Type ctermfg=NONE | |
| hi Underlined cterm=underline | |
| hi VertSplit ctermfg=NONE | |
| hi Visual cterm=reverse | |
| hi VisualNOS ctermfg=NONE | |
| hi WarningMsg cterm=standout | |
| hi WildMenu cterm=bold | |
| hi cterminal cterm=NONE | |
| hi LspCodeLens ctermfg=248 | |
| hi LspInlayHint ctermfg=248 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is basically the quiet colorscheme for 8 colors, i.e. monochrome, with some additional tweaks. I use Apple Terminal which supports 256 colors (and ligatures!), but I basically want a monochrome color scheme, except for diff mode. The builtin
quietcolorscheme is almost perfect and very well crafted, but I wanted to incorporate my own tweaks (e.g., no bg color forNormalor floating windows -- LSP hover andPmenu) and to dismiss some other colors that I don't really need. Here it is: a more quiet colorscheme for tty nerds.P.S. I came across quiet2 while updating this gist, but I haven't tested it.