vim-monochrome

My fork of github.com/fxn/vim-monochrome
git clone https://git.sr.ht/~jbauer/vim-monochrome
Log | Files | Refs | README | LICENSE

commit 15bc05b951fc0bd8c9cc698d3891280e72418956
parent 322e6ef250d18416a4f3454c35ec15b8fb98a03a
Author: Jake Bauer <jbauer@paritybit.ca>
Date:   Sun, 28 Aug 2022 10:06:33 -0400

Improve dark theme colours

Colours are now defined in terms of 256-colour (i.e. >15) codes which
means there shouldn't be any awkwardness with terminal colour schemes.

Colours are also improved to have better contrast and more logical
naming.

Diffstat:
Mcolors/monochrome.vim | 18+++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/colors/monochrome.vim b/colors/monochrome.vim @@ -13,12 +13,12 @@ endif let g:colors_name = 'monochrome' -let s:black = ['#080808', 0] -let s:red = ['#994444', 1] -let s:green = ['#449944', 2] -let s:yellow = ['#999444', 3] -let s:cyan = ['#449999', 6] -let s:white = ['#FFFFFF', 15] +let s:black = ['#080808', 232] +let s:red = ['#D75F5F', 167] +let s:green = ['#5FAF5F', 71] +let s:blue = ['#0087FF', 33] +let s:yellow = ['#D7D700', 184] +let s:white = ['#FFFFFF', 231] let s:accent = ['#5F5F5F', 59] let s:cursorline = ['#4E4E4E', 239] let s:comment = ['#6C6C6C', 242] @@ -188,17 +188,17 @@ call s:hi('diffRemoved', s:red) call s:hi('Title', s:white, s:default_bg, s:bold) call s:hi('markdownHeadingDelimiter', s:white, s:default_bg, s:bold) call s:hi('markdownHeadingRule', s:white, s:default_bg, s:bold) -call s:hi('markdownLinkText', s:cyan, s:default_bg, s:underline) +call s:hi('markdownLinkText', s:blue, s:default_bg, s:underline) " --- HTML --------------------------------------------------------------------- -call s:hi('htmlLink', s:cyan, s:default_bg, s:underline) +call s:hi('htmlLink', s:blue, s:default_bg, s:underline) call s:hi('htmlArg', s:default_fg, s:default_bg) " --- Gemini ------------------------------------------------------------------- " Bsed off of the following plugin: https://tildegit.org/sloum/gemini-vim-syntax call s:hi('gmiHeader', s:white, s:default_bg, s:bold) call s:hi('gmiLinkStart', s:white, s:default_bg, s:bold) -call s:hi('gmiLinkURL', s:cyan, s:default_bg, s:underline) +call s:hi('gmiLinkURL', s:blue, s:default_bg, s:underline) call s:hi('gmiLinkTitle', s:accent, s:default_bg, s:none) call s:hi('gmiMono', s:accent, s:default_bg, s:bold) call s:hi('gmiQuoteLine', s:accent, s:default_bg, s:bold)