mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
italic, bold, slight color change
This commit is contained in:
parent
daa74d5c9c
commit
6012edb321
2 changed files with 39 additions and 37 deletions
|
|
@ -12,7 +12,8 @@ local palette = {
|
||||||
crimson = '#fa4678',
|
crimson = '#fa4678',
|
||||||
gold = '#f69957',
|
gold = '#f69957',
|
||||||
-- rose = '#ebbcba',
|
-- rose = '#ebbcba',
|
||||||
rose = '#ff79b1',
|
-- rose = '#ff79b1',
|
||||||
|
rose = '#ff82b4',
|
||||||
calm = '#23ff87',
|
calm = '#23ff87',
|
||||||
pine = '#cd51d5',
|
pine = '#cd51d5',
|
||||||
foam = '#9ccfd8',
|
foam = '#9ccfd8',
|
||||||
|
|
|
||||||
|
|
@ -41,6 +41,7 @@ function M.get()
|
||||||
|
|
||||||
local styles = {
|
local styles = {
|
||||||
italic = 'italic',
|
italic = 'italic',
|
||||||
|
bold = 'bold',
|
||||||
vert_split = p.none,
|
vert_split = p.none,
|
||||||
background = groups.background,
|
background = groups.background,
|
||||||
float_background = groups.panel
|
float_background = groups.panel
|
||||||
|
|
@ -67,7 +68,7 @@ function M.get()
|
||||||
diffRemoved = {link = 'DiffDelete'},
|
diffRemoved = {link = 'DiffDelete'},
|
||||||
Directory = {fg = p.foam, bg = p.none},
|
Directory = {fg = p.foam, bg = p.none},
|
||||||
-- EndOfBuffer = {},
|
-- EndOfBuffer = {},
|
||||||
ErrorMsg = {fg = p.crimson, style = 'bold'},
|
ErrorMsg = {fg = p.crimson, style = styles.bold},
|
||||||
FloatBorder = {fg = groups.border},
|
FloatBorder = {fg = groups.border},
|
||||||
FloatTitle = {fg = p.muted},
|
FloatTitle = {fg = p.muted},
|
||||||
FoldColumn = {fg = p.muted},
|
FoldColumn = {fg = p.muted},
|
||||||
|
|
@ -115,7 +116,7 @@ function M.get()
|
||||||
-- Whitespace = {},
|
-- Whitespace = {},
|
||||||
WildMenu = {link = 'IncSearch'},
|
WildMenu = {link = 'IncSearch'},
|
||||||
|
|
||||||
Boolean = {fg = p.blu},
|
Boolean = {fg = p.blu, style = styles.italic},
|
||||||
Character = {fg = p.gold},
|
Character = {fg = p.gold},
|
||||||
Comment = {fg = groups.comment, style = styles.italic},
|
Comment = {fg = groups.comment, style = styles.italic},
|
||||||
Conditional = {fg = p.pine},
|
Conditional = {fg = p.pine},
|
||||||
|
|
@ -130,7 +131,7 @@ function M.get()
|
||||||
Identifier = {fg = p.rose},
|
Identifier = {fg = p.rose},
|
||||||
-- Ignore = {},
|
-- Ignore = {},
|
||||||
Include = {fg = p.iris},
|
Include = {fg = p.iris},
|
||||||
Keyword = {fg = p.pine},
|
Keyword = {fg = p.pine, style = styles.italic},
|
||||||
Label = {fg = p.foam},
|
Label = {fg = p.foam},
|
||||||
Macro = {fg = p.iris},
|
Macro = {fg = p.iris},
|
||||||
Number = {fg = p.gold},
|
Number = {fg = p.gold},
|
||||||
|
|
@ -152,13 +153,13 @@ function M.get()
|
||||||
Underlined = {style = 'underline'},
|
Underlined = {style = 'underline'},
|
||||||
|
|
||||||
htmlArg = {fg = p.iris},
|
htmlArg = {fg = p.iris},
|
||||||
htmlBold = {style = 'bold'},
|
htmlBold = {style = styles.bold},
|
||||||
htmlEndTag = {fg = p.subtle},
|
htmlEndTag = {fg = p.subtle},
|
||||||
htmlH1 = {fg = groups.headings.h1, style = 'bold'},
|
htmlH1 = {fg = groups.headings.h1, style = styles.bold},
|
||||||
htmlH2 = {fg = groups.headings.h2, style = 'bold'},
|
htmlH2 = {fg = groups.headings.h2, style = styles.bold},
|
||||||
htmlH3 = {fg = groups.headings.h3, style = 'bold'},
|
htmlH3 = {fg = groups.headings.h3, style = styles.bold},
|
||||||
htmlH4 = {fg = groups.headings.h4, style = 'bold'},
|
htmlH4 = {fg = groups.headings.h4, style = styles.bold},
|
||||||
htmlH5 = {fg = groups.headings.h5, style = 'bold'},
|
htmlH5 = {fg = groups.headings.h5, style = styles.bold},
|
||||||
htmlItalic = {style = styles.italic},
|
htmlItalic = {style = styles.italic},
|
||||||
htmlLink = {fg = groups.link},
|
htmlLink = {fg = groups.link},
|
||||||
htmlTag = {fg = p.subtle},
|
htmlTag = {fg = p.subtle},
|
||||||
|
|
@ -166,17 +167,17 @@ function M.get()
|
||||||
htmlTagName = {fg = p.foam},
|
htmlTagName = {fg = p.foam},
|
||||||
|
|
||||||
markdownDelimiter = {fg = p.subtle},
|
markdownDelimiter = {fg = p.subtle},
|
||||||
markdownH1 = {fg = groups.headings.h1, style = 'bold'},
|
markdownH1 = {fg = groups.headings.h1, style = styles.bold},
|
||||||
markdownH1Delimiter = {link = 'markdownH1'},
|
markdownH1Delimiter = {link = 'markdownH1'},
|
||||||
markdownH2 = {fg = groups.headings.h2, style = 'bold'},
|
markdownH2 = {fg = groups.headings.h2, style = styles.bold},
|
||||||
markdownH2Delimiter = {link = 'markdownH2'},
|
markdownH2Delimiter = {link = 'markdownH2'},
|
||||||
markdownH3 = {fg = groups.headings.h3, style = 'bold'},
|
markdownH3 = {fg = groups.headings.h3, style = styles.bold},
|
||||||
markdownH3Delimiter = {link = 'markdownH3'},
|
markdownH3Delimiter = {link = 'markdownH3'},
|
||||||
markdownH4 = {fg = groups.headings.h4, style = 'bold'},
|
markdownH4 = {fg = groups.headings.h4, style = styles.bold},
|
||||||
markdownH4Delimiter = {link = 'markdownH4'},
|
markdownH4Delimiter = {link = 'markdownH4'},
|
||||||
markdownH5 = {fg = groups.headings.h5, style = 'bold'},
|
markdownH5 = {fg = groups.headings.h5, style = styles.bold},
|
||||||
markdownH5Delimiter = {link = 'markdownH5'},
|
markdownH5Delimiter = {link = 'markdownH5'},
|
||||||
markdownH6 = {fg = groups.headings.h6, style = 'bold'},
|
markdownH6 = {fg = groups.headings.h6, style = styles.bold},
|
||||||
markdownH6Delimiter = {link = 'markdownH6'},
|
markdownH6Delimiter = {link = 'markdownH6'},
|
||||||
markdownLinkText = {fg = groups.link, style = 'underline'},
|
markdownLinkText = {fg = groups.link, style = 'underline'},
|
||||||
markdownUrl = {link = 'markdownLinkText'},
|
markdownUrl = {link = 'markdownLinkText'},
|
||||||
|
|
@ -272,7 +273,7 @@ function M.get()
|
||||||
TSTag = {fg = p.foam},
|
TSTag = {fg = p.foam},
|
||||||
TSTagDelimiter = {fg = p.subtle},
|
TSTagDelimiter = {fg = p.subtle},
|
||||||
TSText = {fg = p.text},
|
TSText = {fg = p.text},
|
||||||
TSTitle = {fg = groups.headings.h1, style = 'bold'},
|
TSTitle = {fg = groups.headings.h1, style = styles.bold},
|
||||||
TSType = {link = 'Type'},
|
TSType = {link = 'Type'},
|
||||||
-- TSTypeBuiltin = {},
|
-- TSTypeBuiltin = {},
|
||||||
TSURI = {fg = groups.link},
|
TSURI = {fg = groups.link},
|
||||||
|
|
@ -360,8 +361,8 @@ function M.get()
|
||||||
-- hrsh7th/nvim-cmp
|
-- hrsh7th/nvim-cmp
|
||||||
CmpItemAbbr = {fg = p.subtle},
|
CmpItemAbbr = {fg = p.subtle},
|
||||||
CmpItemAbbrDeprecated = {fg = p.subtle, style = 'strikethrough'},
|
CmpItemAbbrDeprecated = {fg = p.subtle, style = 'strikethrough'},
|
||||||
CmpItemAbbrMatch = {fg = p.text, style = 'bold'},
|
CmpItemAbbrMatch = {fg = p.text, style = styles.bold},
|
||||||
CmpItemAbbrMatchFuzzy = {fg = p.text, style = 'bold'},
|
CmpItemAbbrMatchFuzzy = {fg = p.text, style = styles.bold},
|
||||||
CmpItemKind = {fg = p.iris},
|
CmpItemKind = {fg = p.iris},
|
||||||
CmpItemKindClass = {fg = p.gold},
|
CmpItemKindClass = {fg = p.gold},
|
||||||
CmpItemKindFunction = {fg = p.iris},
|
CmpItemKindFunction = {fg = p.iris},
|
||||||
|
|
@ -379,46 +380,46 @@ function M.get()
|
||||||
|
|
||||||
-- vimwiki/vimwiki
|
-- vimwiki/vimwiki
|
||||||
VimwikiHR = {fg = p.subtle},
|
VimwikiHR = {fg = p.subtle},
|
||||||
VimwikiHeader1 = {fg = groups.headings.h1, style = 'bold'},
|
VimwikiHeader1 = {fg = groups.headings.h1, style = styles.bold},
|
||||||
VimwikiHeader2 = {fg = groups.headings.h2, style = 'bold'},
|
VimwikiHeader2 = {fg = groups.headings.h2, style = styles.bold},
|
||||||
VimwikiHeader3 = {fg = groups.headings.h3, style = 'bold'},
|
VimwikiHeader3 = {fg = groups.headings.h3, style = styles.bold},
|
||||||
VimwikiHeader4 = {fg = groups.headings.h4, style = 'bold'},
|
VimwikiHeader4 = {fg = groups.headings.h4, style = styles.bold},
|
||||||
VimwikiHeader5 = {fg = groups.headings.h5, style = 'bold'},
|
VimwikiHeader5 = {fg = groups.headings.h5, style = styles.bold},
|
||||||
VimwikiHeader6 = {fg = groups.headings.h6, style = 'bold'},
|
VimwikiHeader6 = {fg = groups.headings.h6, style = styles.bold},
|
||||||
VimwikiHeaderChar = {fg = p.pine},
|
VimwikiHeaderChar = {fg = p.pine},
|
||||||
VimwikiLink = {fg = groups.link, style = 'underline'},
|
VimwikiLink = {fg = groups.link, style = 'underline'},
|
||||||
VimwikiList = {fg = p.iris},
|
VimwikiList = {fg = p.iris},
|
||||||
VimwikiNoExistsLink = {fg = p.crimson},
|
VimwikiNoExistsLink = {fg = p.crimson},
|
||||||
|
|
||||||
-- nvim-neorg/neorg
|
-- nvim-neorg/neorg
|
||||||
NeorgHeading1Prefix = {fg = groups.headings.h1, style = 'bold'},
|
NeorgHeading1Prefix = {fg = groups.headings.h1, style = styles.bold},
|
||||||
NeorgHeading1Title = {link = 'NeorgHeading1Prefix'},
|
NeorgHeading1Title = {link = 'NeorgHeading1Prefix'},
|
||||||
NeorgHeading2Prefix = {fg = groups.headings.h2, style = 'bold'},
|
NeorgHeading2Prefix = {fg = groups.headings.h2, style = styles.bold},
|
||||||
NeorgHeading2Title = {link = 'NeorgHeading2Prefix'},
|
NeorgHeading2Title = {link = 'NeorgHeading2Prefix'},
|
||||||
NeorgHeading3Prefix = {fg = groups.headings.h3, style = 'bold'},
|
NeorgHeading3Prefix = {fg = groups.headings.h3, style = styles.bold},
|
||||||
NeorgHeading3Title = {link = 'NeorgHeading3Prefix'},
|
NeorgHeading3Title = {link = 'NeorgHeading3Prefix'},
|
||||||
NeorgHeading4Prefix = {fg = groups.headings.h4, style = 'bold'},
|
NeorgHeading4Prefix = {fg = groups.headings.h4, style = styles.bold},
|
||||||
NeorgHeading4Title = {link = 'NeorgHeading4Prefix'},
|
NeorgHeading4Title = {link = 'NeorgHeading4Prefix'},
|
||||||
NeorgHeading5Prefix = {fg = groups.headings.h5, style = 'bold'},
|
NeorgHeading5Prefix = {fg = groups.headings.h5, style = styles.bold},
|
||||||
NeorgHeading5Title = {link = 'NeorgHeading5Prefix'},
|
NeorgHeading5Title = {link = 'NeorgHeading5Prefix'},
|
||||||
NeorgHeading6Prefix = {fg = groups.headings.h6, style = 'bold'},
|
NeorgHeading6Prefix = {fg = groups.headings.h6, style = styles.bold},
|
||||||
NeorgHeading6Title = {link = 'NeorgHeading6Prefix'},
|
NeorgHeading6Title = {link = 'NeorgHeading6Prefix'},
|
||||||
NeorgMarkerTitle = {fg = p.text, style = 'bold'},
|
NeorgMarkerTitle = {fg = p.text, style = styles.bold},
|
||||||
|
|
||||||
-- tami5/lspsaga.nvim (fork of glepnir/lspsaga.nvim)
|
-- tami5/lspsaga.nvim (fork of glepnir/lspsaga.nvim)
|
||||||
DefinitionCount = {fg = p.rose},
|
DefinitionCount = {fg = p.rose},
|
||||||
DefinitionIcon = {fg = p.rose},
|
DefinitionIcon = {fg = p.rose},
|
||||||
DefintionPreviewTitle = {fg = p.rose, style = 'bold'},
|
DefintionPreviewTitle = {fg = p.rose, style = styles.bold},
|
||||||
LspFloatWinBorder = {fg = groups.border},
|
LspFloatWinBorder = {fg = groups.border},
|
||||||
LspFloatWinNormal = {bg = groups.background},
|
LspFloatWinNormal = {bg = groups.background},
|
||||||
LspSagaAutoPreview = {fg = p.subtle},
|
LspSagaAutoPreview = {fg = p.subtle},
|
||||||
LspSagaCodeActionBorder = {fg = groups.border},
|
LspSagaCodeActionBorder = {fg = groups.border},
|
||||||
LspSagaCodeActionContent = {fg = p.foam},
|
LspSagaCodeActionContent = {fg = p.foam},
|
||||||
LspSagaCodeActionTitle = {fg = p.gold, style = 'bold'},
|
LspSagaCodeActionTitle = {fg = p.gold, style = styles.bold},
|
||||||
LspSagaCodeActionTruncateLine = {link = 'LspSagaCodeActionBorder'},
|
LspSagaCodeActionTruncateLine = {link = 'LspSagaCodeActionBorder'},
|
||||||
LspSagaDefPreviewBorder = {fg = groups.border},
|
LspSagaDefPreviewBorder = {fg = groups.border},
|
||||||
LspSagaDiagnosticBorder = {fg = groups.border},
|
LspSagaDiagnosticBorder = {fg = groups.border},
|
||||||
LspSagaDiagnosticHeader = {fg = p.gold, style = 'bold'},
|
LspSagaDiagnosticHeader = {fg = p.gold, style = styles.bold},
|
||||||
LspSagaDiagnosticTruncateLine = {link = 'LspSagaDiagnosticBorder'},
|
LspSagaDiagnosticTruncateLine = {link = 'LspSagaDiagnosticBorder'},
|
||||||
LspSagaDocTruncateLine = {link = 'LspSagaHoverBorder'},
|
LspSagaDocTruncateLine = {link = 'LspSagaHoverBorder'},
|
||||||
LspSagaFinderSelection = {fg = p.gold},
|
LspSagaFinderSelection = {fg = p.gold},
|
||||||
|
|
@ -476,7 +477,7 @@ function M.get()
|
||||||
DapUIThread = {fg = p.gold},
|
DapUIThread = {fg = p.gold},
|
||||||
DapUIWatchesValue = {link = 'DapUIThread'},
|
DapUIWatchesValue = {link = 'DapUIThread'},
|
||||||
DapUIBreakpointsInfo = {link = 'DapUIThread'},
|
DapUIBreakpointsInfo = {link = 'DapUIThread'},
|
||||||
DapUIBreakpointsCurrentLine = {fg = p.gold, style = 'bold'},
|
DapUIBreakpointsCurrentLine = {fg = p.gold, style = styles.bold},
|
||||||
DapUIWatchesEmpty = {fg = p.crimson},
|
DapUIWatchesEmpty = {fg = p.crimson},
|
||||||
DapUIWatchesError = {link = 'DapUIWatchesEmpty'},
|
DapUIWatchesError = {link = 'DapUIWatchesEmpty'},
|
||||||
DapUIBreakpointsDisabledLine = {fg = p.muted},
|
DapUIBreakpointsDisabledLine = {fg = p.muted},
|
||||||
|
|
@ -488,7 +489,7 @@ function M.get()
|
||||||
DapUIFloatBorder = {link = 'DapUIBreakpointsPath'},
|
DapUIFloatBorder = {link = 'DapUIBreakpointsPath'},
|
||||||
DapUIStoppedThread = {link = 'DapUIBreakpointsPath'},
|
DapUIStoppedThread = {link = 'DapUIBreakpointsPath'},
|
||||||
DapUIDecoration = {link = 'DapUIBreakpointsPath'},
|
DapUIDecoration = {link = 'DapUIBreakpointsPath'},
|
||||||
DapUIModifiedValue = {fg = p.foam, style = 'bold'},
|
DapUIModifiedValue = {fg = p.foam, style = styles.bold},
|
||||||
|
|
||||||
-- glepnir/dashboard-nvim
|
-- glepnir/dashboard-nvim
|
||||||
DashboardShortcut = {fg = p.love},
|
DashboardShortcut = {fg = p.love},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue