forked from norcalli/nvim-base16.lua
-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update nvdash hlgroups & make only fg colored
- Loading branch information
Showing
1 changed file
with
13 additions
and
8 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,18 @@ | ||
local colors = require("base46").get_theme_tb "base_30" | ||
|
||
return { | ||
NvDashAscii = { | ||
fg = colors.black, | ||
bg = colors.blue, | ||
}, | ||
NvDashAscii = { fg = colors.blue }, | ||
NvDashButtons = { fg = colors.light_grey }, | ||
NvDashlazy = { fg = colors.red }, | ||
|
||
NvDashButtons = { | ||
fg = colors.white, | ||
bg = colors.black2, | ||
}, | ||
-- -- for those who want to set bg | ||
-- NvDashAscii = { | ||
-- fg = colors.black, | ||
-- bg = colors.green, | ||
-- }, | ||
-- | ||
-- NvDashButtons = { | ||
-- fg = colors.white, | ||
-- bg = colors.black2, | ||
-- }, | ||
} |