A dark and light Neovim theme written in Lua pulling colors from Nord Theme with a darker background and color usage inspired by Kanagawa Dragon.
| Night | Day |
|---|---|
|
|
- Terminal Colors
- Extensible
- Extras - Find them here
return {
'dladukedev/borealis.nvim',
lazy = false,
priority = 1000,
opts = {},
}MiniDeps.add('dladukedev/borealis.nvim')vim.pack.add({'https://github.com/dladukedev/borealis.nvim'})Calling setup() is optional if you just want the default values.
vim.cmd.colorscheme('borealis-night')
-- OR
vim.cmd.colorscheme('borealis-day')require('borealis').setup({
-- Load a theme on setup - 'day' or 'night'
default_theme = nil,
-- override builtin colors
base_colors = {},
-- override generated colors
override_colors = function(colors) return colors end,
-- override generated theme
override_theme = function(colors, theme) return theme end,
-- add custom highlights and/or override highlights
custom_highlights = function(colors, theme) return {} end,
-- enable term colors from colorscheme
use_term_colors = true
})-- Toggle Between Day and Night
require('borealis').toggle_colorscheme()
-- Set Day Color scheme Programmatically
require('borealis').load_day()
-- Set Night Color scheme Programmatically
require('borealis').load_night()
-- Build Extras Folder
require('borealis').build_extras()Also available as User Commands
" Toggle Between Day and Night
:Borealis toggle-theme
" Set Day Color scheme Programmatically
:Borealis day
" Set Night Color scheme Programmatically
:Borealis night
" Build Extras Folder
:Borealis build-extrasConfiguration files for terminals, applications, etc

