Update colors so that identifiers can be spotted immediately

This commit is contained in:
Iron_E 2020-06-21 21:43:51 -04:00
parent e3bef4bf4f
commit 5f89cc8da0
No known key found for this signature in database
GPG Key ID: B0B37DE7EDC2335F
2 changed files with 3 additions and 9 deletions

View File

@ -2,13 +2,7 @@
`nvim-highlite` is a colorscheme template repository for Neovim 0.5+.
This project aims to make the following
* You can define/modify variables once instead of messing around with potentially botched substitutions.
* You can distribute a lean colorscheme, free from unnecessary logic.
* You can distribute the source alongside the colorscheme, making it easy for your users to experiment and adapt *your* colorscheme to *their* needs.
* You can focus on the design of your colorscheme rather than its implementation.
* You can start working on new colorscheme ideas very easily.
This template's focus is on compatability with [semantic highlighting](https://medium.com/@evnbr/coding-in-color-3a6db2743a1e).
# Prerequisites

View File

@ -192,7 +192,7 @@ local highlights = {
Float = {link='Number' },
--[[ 4.1.2. Identifiers]]
Identifier = {bg=NONE, fg=FG, style=NONE},
Identifier = {bg=NONE, fg=white, style=NONE},
Function = {bg=NONE, fg=purple, style=NONE},
--[[ 4.1.3. Syntax]]
@ -222,7 +222,7 @@ local highlights = {
SpecialChar = {link='Character' },
SpecialKey = {link='Character' },
Tag = {link='Underlined' },
Delimiter = {bg=NONE, fg=white, style=NONE },
Delimiter = {bg=NONE, fg=gray, style=NONE },
SpecialComment = {bg=NONE, fg=gray, style={'bold', 'nocombine'}},
Debug = {link='WarningMsg' },