Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
pauchiner committed Feb 5, 2024
2 parents e39085e + 709c80f commit ab4fa06
Show file tree
Hide file tree
Showing 3 changed files with 99 additions and 13 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [2.2.0](https://github.com/pauchiner/pastelnight.nvim/compare/v2.1.0...v2.2.0) (2024-02-05)


### Features

* **theme:** add barbecue support ([c8ce539](https://github.com/pauchiner/pastelnight.nvim/commit/c8ce539346608c0c78b69cfe73e447a1d80c3ff7))
* **theme:** add lightline support ([fcc2ef2](https://github.com/pauchiner/pastelnight.nvim/commit/fcc2ef22fef368510960a036ce4a5c724f40d4d4))

## [2.1.0](https://github.com/pauchiner/pastelnight.nvim/compare/v2.0.0...v2.1.0) (2024-02-04)


Expand Down
32 changes: 31 additions & 1 deletion doc/pastelnight.nvim.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*pastelnight.nvim.txt* For Neovim >= 0.8.0 Last change: 2024 February 04
*pastelnight.nvim.txt* For Neovim >= 0.8.0 Last change: 2024 February 05

==============================================================================
Table of Contents *pastelnight.nvim-table-of-contents*
Expand Down Expand Up @@ -105,6 +105,36 @@ LUA
<


OTHER SUPPORTED PLUGINS


BARBECUE

>lua
require('barbecue').setup {
theme = 'pastelnight',
}
<


LUALINE

>lua
require('lualine').setup {
options = {
theme = 'pastelnight'
}
}
<


LIGHTLINE

>vim
let g:lightline = {'colorscheme': 'pastelnight'}
<


CONFIGURATION *pastelnight.nvim-configuration*


Expand Down
72 changes: 60 additions & 12 deletions lua/lightline/colorscheme/pastelnight.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,37 +3,85 @@ local colors = require('pastelnight.colors').setup({ transform = true })
local pastelnight = {}

pastelnight.normal = {
left = { { colors.bg, colors.purple, 'bold' }, { colors.purple300, colors.bg_statusline }, { colors.base400, colors.bg_statusline }, },
right = { { colors.bg, colors.purple, 'bold' }, { colors.purple300, colors.bg_statusline }, { colors.base400, colors.bg_statusline }, },
left = {
{ colors.bg, colors.purple, 'bold' },
{ colors.purple300, colors.bg_statusline },
{ colors.base400, colors.bg_statusline },
},
right = {
{ colors.bg, colors.purple, 'bold' },
{ colors.purple300, colors.bg_statusline },
{ colors.base400, colors.bg_statusline },
},
middle = { { colors.base300, colors.bg_statusline } },
warning = { { colors.black, colors.warning } },
error = { { colors.black, colors.error } },
}

pastelnight.insert = {
left = { { colors.bg, colors.blue, 'bold' }, { colors.blue300, colors.bg_statusline }, { colors.base400, colors.bg_statusline }, },
right = { { colors.bg, colors.blue, 'bold' }, { colors.blue300, colors.bg_statusline }, { colors.base400, colors.bg_statusline }, },
left = {
{ colors.bg, colors.blue, 'bold' },
{ colors.blue300, colors.bg_statusline },
{ colors.base400, colors.bg_statusline },
},
right = {
{ colors.bg, colors.blue, 'bold' },
{ colors.blue300, colors.bg_statusline },
{ colors.base400, colors.bg_statusline },
},
}

pastelnight.visual = {
left = { { colors.bg, colors.yellow, 'bold' }, { colors.yellow300, colors.bg_statusline }, { colors.base400, colors.bg_statusline }, },
right = { { colors.bg, colors.yellow, 'bold' }, { colors.yellow300, colors.bg_statusline }, { colors.base400, colors.bg_statusline }, },
left = {
{ colors.bg, colors.yellow, 'bold' },
{ colors.yellow300, colors.bg_statusline },
{ colors.base400, colors.bg_statusline },
},
right = {
{ colors.bg, colors.yellow, 'bold' },
{ colors.yellow300, colors.bg_statusline },
{ colors.base400, colors.bg_statusline },
},
}

pastelnight.replace = {
left = { { colors.bg, colors.green, 'bold' }, { colors.green300, colors.bg_statusline }, { colors.base400, colors.bg_statusline }, },
right = { { colors.bg, colors.green, 'bold' }, { colors.green300, colors.bg_statusline }, { colors.base400, colors.bg_statusline }, },
left = {
{ colors.bg, colors.green, 'bold' },
{ colors.green300, colors.bg_statusline },
{ colors.base400, colors.bg_statusline },
},
right = {
{ colors.bg, colors.green, 'bold' },
{ colors.green300, colors.bg_statusline },
{ colors.base400, colors.bg_statusline },
},
}

pastelnight.inactive = {
left = { { colors.bg_statusline, colors.purple, 'bold' }, { colors.base400, colors.bg_statusline }, { colors.base400, colors.bg_statusline }, },
right = { { colors.bg_statusline, colors.purple, 'bold' }, { colors.base400, colors.bg_statusline }, { colors.base400, colors.bg_statusline }, },
left = {
{ colors.bg_statusline, colors.purple, 'bold' },
{ colors.base400, colors.bg_statusline },
{ colors.base400, colors.bg_statusline },
},
right = {
{ colors.bg_statusline, colors.purple, 'bold' },
{ colors.base400, colors.bg_statusline },
{ colors.base400, colors.bg_statusline },
},
middle = { { colors.base300, colors.bg_statusline } },
}

pastelnight.tabline = {
left = { { colors.bg_statusline, colors.purple, 'bold' }, { colors.base400, colors.bg_statusline }, { colors.base400, colors.bg_statusline }, },
right = { { colors.bg_statusline, colors.purple, 'bold' }, { colors.base400, colors.bg_statusline }, { colors.base400, colors.bg_statusline }, },
left = {
{ colors.bg_statusline, colors.purple, 'bold' },
{ colors.base400, colors.bg_statusline },
{ colors.base400, colors.bg_statusline },
},
right = {
{ colors.bg_statusline, colors.purple, 'bold' },
{ colors.base400, colors.bg_statusline },
{ colors.base400, colors.bg_statusline },
},
tabsel = { { colors.purple, colors.bg }, { colors.base400, colors.bg } },
middle = { { colors.base300, colors.bg_statusline } },
}
Expand Down

0 comments on commit ab4fa06

Please sign in to comment.