A color scheme to illuminate your editor. Does not require frequent replacement to keep glowing.
Example setup with lazy.nvim:
return {
"alfazet/red-phosphor.nvim",
config = function()
local theme = require("red-phosphor/init")
theme.setup({
-- default: true
transparent = true,
-- optional, if you want to override any of the colors
palette_overrides = { fg1 = "#00ff00" },
-- optional, if you want to override any of the highlight groups
highlight_overrides = { Boolean = { fg = "#0000ff" } },
})
theme.colorscheme()
end,
}