diff --git a/README.md b/README.md index 82f6822..3c5f51c 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/lua/highlite/init.lua b/lua/highlite/init.lua index 60b5883..19e95fd 100644 --- a/lua/highlite/init.lua +++ b/lua/highlite/init.lua @@ -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' },