Skip to content

dladukedev/borealis.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Borealis.nvim

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.

Preview

Night Day
Screenshot 2025-08-05 at 8 48 59 PM Screenshot 2025-08-05 at 8 49 44 PM

Features

Installation

Lazy

return {
    'dladukedev/borealis.nvim',
    lazy = false,
    priority = 1000,
    opts = {},
}

Mini.Deps

MiniDeps.add('dladukedev/borealis.nvim')

vim.pack

vim.pack.add({'https://github.com/dladukedev/borealis.nvim'})

Calling setup() is optional if you just want the default values.

Usage

vim.cmd.colorscheme('borealis-night')
-- OR
vim.cmd.colorscheme('borealis-day')

Configuration

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
})

Helpful Functions

-- 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-extras

Extras

Configuration files for terminals, applications, etc

Similar Themes

About

Colorscheme based on Nord Aurora Colors and Kanagawa theme

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages