mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
updated colours, formatting
This commit is contained in:
parent
821d91699f
commit
9f8166f90a
10 changed files with 806 additions and 833 deletions
|
|
@ -4,210 +4,202 @@
|
|||
--- @usage
|
||||
--- local highlights = require('rose-pine.plugins.bufferline')
|
||||
--- require('bufferline').setup({ highlights = highlights })
|
||||
|
||||
local p = require('rose-pine.palette')
|
||||
|
||||
return {
|
||||
-- fill = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- background = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- tab = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- tab_selected = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- tab_close = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- close_button = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- close_button_visible = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- close_button_selected = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
buffer_visible = {
|
||||
guifg = p.subtle,
|
||||
guibg = p.base,
|
||||
},
|
||||
buffer_selected = {
|
||||
guifg = p.text,
|
||||
guibg = p.surface,
|
||||
gui = 'bold,italic',
|
||||
},
|
||||
-- diagnostic = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- diagnostic_visible = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- diagnostic_selected = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- gui = 'bold,italic',
|
||||
-- },
|
||||
-- info = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guisp = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- info_visible = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- info_selected = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- gui = 'bold,italic',
|
||||
-- guisp = '<color-value-here>',
|
||||
-- },
|
||||
-- info_diagnostic = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guisp = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- info_diagnostic_visible = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- info_diagnostic_selected = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- gui = 'bold,italic',
|
||||
-- guisp = '<color-value-here>',
|
||||
-- },
|
||||
-- warning = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guisp = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- warning_visible = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- warning_selected = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- gui = 'bold,italic',
|
||||
-- guisp = '<color-value-here>',
|
||||
-- },
|
||||
-- warning_diagnostic = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guisp = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- warning_diagnostic_visible = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- warning_diagnostic_selected = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- gui = 'bold,italic',
|
||||
-- guisp = warning_diagnostic_fg,
|
||||
-- },
|
||||
-- error = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- guisp = '<color-value-here>',
|
||||
-- },
|
||||
-- error_visible = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- error_selected = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- gui = 'bold,italic',
|
||||
-- guisp = '<color-value-here>',
|
||||
-- },
|
||||
-- error_diagnostic = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- guisp = '<color-value-here>',
|
||||
-- },
|
||||
-- error_diagnostic_visible = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- error_diagnostic_selected = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- gui = 'bold,italic',
|
||||
-- guisp = '<color-value-here>',
|
||||
-- },
|
||||
-- modified = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- modified_visible = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- modified_selected = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- duplicate_selected = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- gui = 'italic',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- duplicate_visible = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- gui = 'italic',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- duplicate = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- gui = 'italic',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- separator_selected = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- separator_visible = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- separator = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- indicator_selected = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- pick_selected = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- gui = 'bold,italic',
|
||||
-- },
|
||||
-- pick_visible = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- gui = 'bold,italic',
|
||||
-- },
|
||||
-- pick = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- gui = 'bold,italic',
|
||||
-- },
|
||||
-- fill = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- background = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- tab = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- tab_selected = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- tab_close = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- close_button = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- close_button_visible = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- close_button_selected = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
buffer_visible = {guifg = p.subtle, guibg = p.base},
|
||||
buffer_selected = {guifg = p.text, guibg = p.surface, gui = 'bold,italic'}
|
||||
-- diagnostic = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- diagnostic_visible = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- diagnostic_selected = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- gui = 'bold,italic',
|
||||
-- },
|
||||
-- info = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guisp = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- info_visible = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- info_selected = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- gui = 'bold,italic',
|
||||
-- guisp = '<color-value-here>',
|
||||
-- },
|
||||
-- info_diagnostic = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guisp = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- info_diagnostic_visible = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- info_diagnostic_selected = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- gui = 'bold,italic',
|
||||
-- guisp = '<color-value-here>',
|
||||
-- },
|
||||
-- warning = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guisp = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- warning_visible = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- warning_selected = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- gui = 'bold,italic',
|
||||
-- guisp = '<color-value-here>',
|
||||
-- },
|
||||
-- warning_diagnostic = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guisp = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- warning_diagnostic_visible = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- warning_diagnostic_selected = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- gui = 'bold,italic',
|
||||
-- guisp = warning_diagnostic_fg,
|
||||
-- },
|
||||
-- error = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- guisp = '<color-value-here>',
|
||||
-- },
|
||||
-- error_visible = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- error_selected = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- gui = 'bold,italic',
|
||||
-- guisp = '<color-value-here>',
|
||||
-- },
|
||||
-- error_diagnostic = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- guisp = '<color-value-here>',
|
||||
-- },
|
||||
-- error_diagnostic_visible = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- error_diagnostic_selected = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- gui = 'bold,italic',
|
||||
-- guisp = '<color-value-here>',
|
||||
-- },
|
||||
-- modified = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- modified_visible = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- modified_selected = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- duplicate_selected = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- gui = 'italic',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- duplicate_visible = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- gui = 'italic',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- duplicate = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- gui = 'italic',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- separator_selected = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- separator_visible = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- separator = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- indicator_selected = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- },
|
||||
-- pick_selected = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- gui = 'bold,italic',
|
||||
-- },
|
||||
-- pick_visible = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- gui = 'bold,italic',
|
||||
-- },
|
||||
-- pick = {
|
||||
-- guifg = '<color-value-here>',
|
||||
-- guibg = '<color-value-here>',
|
||||
-- gui = 'bold,italic',
|
||||
-- },
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,18 +3,17 @@
|
|||
---
|
||||
--- @usage
|
||||
--- local highlights = require('rose-pine.plugins.galaxyline')
|
||||
|
||||
local p = require('rose-pine.palette')
|
||||
|
||||
return {
|
||||
bg = p.surface,
|
||||
fg = p.text,
|
||||
fg_alt = p.subtle,
|
||||
yellow = p.gold,
|
||||
cyan = p.rose,
|
||||
green = p.pine,
|
||||
orange = p.muted,
|
||||
magenta = p.iris,
|
||||
blue = p.foam,
|
||||
red = p.love,
|
||||
bg = p.surface,
|
||||
fg = p.text,
|
||||
fg_alt = p.subtle,
|
||||
yellow = p.gold,
|
||||
cyan = p.rose,
|
||||
green = p.pine,
|
||||
orange = p.muted,
|
||||
magenta = p.iris,
|
||||
blue = p.foam,
|
||||
red = p.love
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,7 +4,6 @@
|
|||
--- @usage
|
||||
--- local highlights = require('rose-pine.plugins.markid')
|
||||
--- require("nvim-treesitter.configs").setup({ markid = { enable = true, colors = highlights } })
|
||||
|
||||
local p = require('rose-pine.palette')
|
||||
|
||||
return { p.foam, p.rose, p.iris }
|
||||
return {p.foam, p.rose, p.iris}
|
||||
|
|
|
|||
|
|
@ -4,12 +4,11 @@
|
|||
--- @usage
|
||||
--- local highlights = require('rose-pine.plugins.toggleterm')
|
||||
--- require('toggleterm').setup({ highlights = highlights })
|
||||
|
||||
return {
|
||||
Normal = { link = 'Normal' },
|
||||
NormalFloat = { link = 'Normal' },
|
||||
FloatBorder = { link = 'FloatBorder' },
|
||||
SignColumn = { link = 'SignColumn' },
|
||||
StatusLine = { link = 'StatusLine' },
|
||||
StatusLineNC = { link = 'StatusLineNC' },
|
||||
Normal = {link = 'Normal'},
|
||||
NormalFloat = {link = 'Normal'},
|
||||
FloatBorder = {link = 'FloatBorder'},
|
||||
SignColumn = {link = 'SignColumn'},
|
||||
StatusLine = {link = 'StatusLine'},
|
||||
StatusLineNC = {link = 'StatusLineNC'}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue