A Matte Black colorscheme for Neovim.
Replacing Yellow by Blue accents.
| Name | Old Value | New Value | Purpose |
|---|---|---|---|
orange |
#F59E0B |
#357ABD |
replaces bright orange with muted blue for softer contrast |
amber |
#D97706 |
#2A4F7D |
substitutes deep orange with darker blue tone |
yellow |
#FBBF24 |
#4A90E2 |
replaces yellow highlights with balanced medium blue |
gold |
#EFBF04 |
#5AA0E8 |
shifts gold to a lighter blue accent |
ochre |
#BF9903 |
#357ABD |
aligns ochre with the same matte blue as orange |
Using lazy.nvim
{
"gregborane/matteblack.nvim",
lazy = false,
priority = 1000,
config = function()
vim.cmd.colorscheme "matteblack"
end,
}I've only tested this with lazy.nvim, but it should work with other plugin managers.
-- Apply the complete theme (includes treesitter and Snacks support)
require("matteblack").colorscheme()
-- Or use the traditional method
vim.cmd.colorscheme "matteblack"Pull requests and issues are welcome! Please open an issue to discuss your ideas or report bugs.
MIT