chore: regen extras

This commit is contained in:
Folke Lemaitre 2023-01-18 15:05:51 +01:00
parent 655acfad61
commit 039b304bf6
No known key found for this signature in database
GPG Key ID: 41F8B1FBACAE2040
9 changed files with 530 additions and 46 deletions

View File

@ -3,10 +3,10 @@
minus-non-emph-style = syntax "#dfccd4" minus-non-emph-style = syntax "#dfccd4"
minus-emph-style = syntax "#672d33" minus-emph-style = syntax "#672d33"
minus-empty-line-marker-style = syntax "#dfccd4" minus-empty-line-marker-style = syntax "#dfccd4"
line-numbers-minus-style = "#b2555b" line-numbers-minus-style = "#c25d64"
plus-style = syntax "#aecde6" plus-style = syntax "#aecde6"
plus-non-emph-style = syntax "#aecde6" plus-non-emph-style = syntax "#aecde6"
plus-emph-style = syntax "#28505c" plus-emph-style = syntax "#28505c"
plus-empty-line-marker-style = syntax "#aecde6" plus-empty-line-marker-style = syntax "#aecde6"
line-numbers-plus-style = "#266d6a" line-numbers-plus-style = "#399a96"
line-numbers-zero-style = "#a8aecb" line-numbers-zero-style = "#a8aecb"

View File

@ -3,10 +3,10 @@
minus-non-emph-style = syntax "#3f2d3d" minus-non-emph-style = syntax "#3f2d3d"
minus-emph-style = syntax "#763842" minus-emph-style = syntax "#763842"
minus-empty-line-marker-style = syntax "#3f2d3d" minus-empty-line-marker-style = syntax "#3f2d3d"
line-numbers-minus-style = "#b2555b" line-numbers-minus-style = "#c25d64"
plus-style = syntax "#283b4d" plus-style = syntax "#283b4d"
plus-non-emph-style = syntax "#283b4d" plus-non-emph-style = syntax "#283b4d"
plus-emph-style = syntax "#316172" plus-emph-style = syntax "#316172"
plus-empty-line-marker-style = syntax "#283b4d" plus-empty-line-marker-style = syntax "#283b4d"
line-numbers-plus-style = "#266d6a" line-numbers-plus-style = "#399a96"
line-numbers-zero-style = "#3b4261" line-numbers-zero-style = "#3b4261"

View File

@ -1,7 +1,7 @@
# TokyoNight Color Palette # TokyoNight Color Palette
set -l foreground c8d3f5 set -l foreground c8d3f5
set -l selection 3654a7 set -l selection 3654a7
set -l comment 7a88cf set -l comment 636da6
set -l red ff757f set -l red ff757f
set -l orange ff966c set -l orange ff966c
set -l yellow ffc777 set -l yellow ffc777

View File

@ -31,7 +31,7 @@ local colors = {
error = "#c64343", error = "#c64343",
fg = "#3760bf", fg = "#3760bf",
fg_dark = "#6172b0", fg_dark = "#6172b0",
fg_float = "#6172b0", fg_float = "#3760bf",
fg_gutter = "#a8aecb", fg_gutter = "#a8aecb",
fg_sidebar = "#6172b0", fg_sidebar = "#6172b0",
git = { git = {
@ -115,6 +115,15 @@ local highlights = {
bg = "#c64343", bg = "#c64343",
fg = "#e1e2e7" fg = "#e1e2e7"
}, },
["@text.diff.add"] = {
link = "DiffAdd"
},
["@text.diff.delete"] = {
link = "DiffDelete"
},
["@text.literal.markdown"] = {
link = "Normal"
},
["@text.literal.markdown_inline"] = { ["@text.literal.markdown_inline"] = {
bg = "#a1a6c5", bg = "#a1a6c5",
fg = "#2e7de9" fg = "#2e7de9"
@ -122,6 +131,12 @@ local highlights = {
["@text.reference"] = { ["@text.reference"] = {
fg = "#118c74" fg = "#118c74"
}, },
["@text.todo.checked"] = {
fg = "#387068"
},
["@text.todo.unchecked"] = {
fg = "#2e7de9"
},
["@text.warning"] = { ["@text.warning"] = {
bg = "#8c6c3e", bg = "#8c6c3e",
fg = "#e1e2e7" fg = "#e1e2e7"
@ -139,7 +154,7 @@ local highlights = {
fg = "#8c6c3e" fg = "#8c6c3e"
}, },
AlphaButtons = { AlphaButtons = {
fg = "#9854f1" fg = "#007197"
}, },
AlphaFooter = { AlphaFooter = {
fg = "#8c6c3e", fg = "#8c6c3e",
@ -152,15 +167,63 @@ local highlights = {
fg = "#b15c00" fg = "#b15c00"
}, },
AlphaShortcut = { AlphaShortcut = {
fg = "#007197" fg = "#b15c00"
}, },
Bold = { Bold = {
bold = true bold = true
}, },
BufferAlternate = {
bg = "#a8aecb",
fg = "#3760bf"
},
BufferAlternateERROR = {
bg = "#a8aecb",
fg = "#c64343"
},
BufferAlternateHINT = {
bg = "#a8aecb",
fg = "#118c74"
},
BufferAlternateINFO = {
bg = "#a8aecb",
fg = "#07879d"
},
BufferAlternateIndex = {
bg = "#a8aecb",
fg = "#07879d"
},
BufferAlternateMod = {
bg = "#a8aecb",
fg = "#8c6c3e"
},
BufferAlternateSign = {
bg = "#a8aecb",
fg = "#07879d"
},
BufferAlternateTarget = {
bg = "#a8aecb",
fg = "#f52a65"
},
BufferAlternateWARN = {
bg = "#a8aecb",
fg = "#8c6c3e"
},
BufferCurrent = { BufferCurrent = {
bg = "#a8aecb", bg = "#a8aecb",
fg = "#3760bf" fg = "#3760bf"
}, },
BufferCurrentERROR = {
bg = "#a8aecb",
fg = "#c64343"
},
BufferCurrentHINT = {
bg = "#a8aecb",
fg = "#118c74"
},
BufferCurrentINFO = {
bg = "#a8aecb",
fg = "#07879d"
},
BufferCurrentIndex = { BufferCurrentIndex = {
bg = "#a8aecb", bg = "#a8aecb",
fg = "#07879d" fg = "#07879d"
@ -177,10 +240,26 @@ local highlights = {
bg = "#a8aecb", bg = "#a8aecb",
fg = "#f52a65" fg = "#f52a65"
}, },
BufferCurrentWARN = {
bg = "#a8aecb",
fg = "#8c6c3e"
},
BufferInactive = { BufferInactive = {
bg = "#e9e9ec", bg = "#e9e9ec",
fg = "#68709a" fg = "#68709a"
}, },
BufferInactiveERROR = {
bg = "#e9e9ec",
fg = "#d97274"
},
BufferInactiveHINT = {
bg = "#e9e9ec",
fg = "#177f6e"
},
BufferInactiveINFO = {
bg = "#e9e9ec",
fg = "#0e7a90"
},
BufferInactiveIndex = { BufferInactiveIndex = {
bg = "#e9e9ec", bg = "#e9e9ec",
fg = "#68709a" fg = "#68709a"
@ -197,12 +276,20 @@ local highlights = {
bg = "#e9e9ec", bg = "#e9e9ec",
fg = "#f52a65" fg = "#f52a65"
}, },
BufferInactiveWARN = {
bg = "#e9e9ec",
fg = "#7b613d"
},
BufferLineIndicatorSelected = { BufferLineIndicatorSelected = {
fg = "#506d9b" fg = "#506d9b"
}, },
BufferTabpage = { BufferOffset = {
bg = "#e9e9ec", bg = "#e9e9ec",
fg = "#2496ac" fg = "#68709a"
},
BufferTabpageFill = {
bg = "#e9e9ec",
fg = "#68709a"
}, },
BufferTabpages = { BufferTabpages = {
bg = "#e9e9ec", bg = "#e9e9ec",
@ -212,6 +299,18 @@ local highlights = {
bg = "#e9e9ec", bg = "#e9e9ec",
fg = "#3760bf" fg = "#3760bf"
}, },
BufferVisibleERROR = {
bg = "#e9e9ec",
fg = "#c64343"
},
BufferVisibleHINT = {
bg = "#e9e9ec",
fg = "#118c74"
},
BufferVisibleINFO = {
bg = "#e9e9ec",
fg = "#07879d"
},
BufferVisibleIndex = { BufferVisibleIndex = {
bg = "#e9e9ec", bg = "#e9e9ec",
fg = "#07879d" fg = "#07879d"
@ -228,6 +327,10 @@ local highlights = {
bg = "#e9e9ec", bg = "#e9e9ec",
fg = "#f52a65" fg = "#f52a65"
}, },
BufferVisibleWARN = {
bg = "#e9e9ec",
fg = "#8c6c3e"
},
Character = { Character = {
fg = "#587539" fg = "#587539"
}, },
@ -538,6 +641,9 @@ local highlights = {
GlyphPalette9 = { GlyphPalette9 = {
fg = "#f52a65" fg = "#f52a65"
}, },
Hlargs = {
fg = "#8c6c3e"
},
HopNextKey = { HopNextKey = {
bold = true, bold = true,
fg = "#d20065" fg = "#d20065"
@ -586,6 +692,14 @@ local highlights = {
italic = true italic = true
} }
}, },
LazyProgressDone = {
bold = true,
fg = "#d20065"
},
LazyProgressTodo = {
bold = true,
fg = "#a8aecb"
},
LeapBackdrop = { LeapBackdrop = {
fg = "#8990b3" fg = "#8990b3"
}, },
@ -1162,7 +1276,7 @@ local highlights = {
}, },
NormalFloat = { NormalFloat = {
bg = "#e9e9ec", bg = "#e9e9ec",
fg = "#6172b0" fg = "#3760bf"
}, },
NormalNC = { NormalNC = {
bg = "#e1e2e7", bg = "#e1e2e7",
@ -1471,6 +1585,9 @@ local highlights = {
bg = "#8c6c3e", bg = "#8c6c3e",
fg = "#e1e2e7" fg = "#e1e2e7"
}, },
TreesitterContext = {
bg = "#b3b8d1"
},
TroubleCount = { TroubleCount = {
bg = "#a8aecb", bg = "#a8aecb",
fg = "#9854f1" fg = "#9854f1"
@ -1577,6 +1694,10 @@ local highlights = {
healthWarning = { healthWarning = {
fg = "#8c6c3e" fg = "#8c6c3e"
}, },
helpCommand = {
bg = "#a1a6c5",
fg = "#2e7de9"
},
htmlH1 = { htmlH1 = {
bold = true, bold = true,
fg = "#9854f1" fg = "#9854f1"

View File

@ -18,7 +18,7 @@ local colors = {
blue7 = "#394b70", blue7 = "#394b70",
border = "#1b1d2b", border = "#1b1d2b",
border_highlight = "#589ed7", border_highlight = "#589ed7",
comment = "#7a88cf", comment = "#636da6",
cyan = "#86e1fc", cyan = "#86e1fc",
dark3 = "#545c7e", dark3 = "#545c7e",
dark5 = "#737aa2", dark5 = "#737aa2",
@ -31,7 +31,7 @@ local colors = {
error = "#c53b53", error = "#c53b53",
fg = "#c8d3f5", fg = "#c8d3f5",
fg_dark = "#828bb8", fg_dark = "#828bb8",
fg_float = "#828bb8", fg_float = "#c8d3f5",
fg_gutter = "#3b4261", fg_gutter = "#3b4261",
fg_sidebar = "#828bb8", fg_sidebar = "#828bb8",
git = { git = {
@ -115,6 +115,15 @@ local highlights = {
bg = "#c53b53", bg = "#c53b53",
fg = "#222436" fg = "#222436"
}, },
["@text.diff.add"] = {
link = "DiffAdd"
},
["@text.diff.delete"] = {
link = "DiffDelete"
},
["@text.literal.markdown"] = {
link = "Normal"
},
["@text.literal.markdown_inline"] = { ["@text.literal.markdown_inline"] = {
bg = "#444a73", bg = "#444a73",
fg = "#82aaff" fg = "#82aaff"
@ -122,6 +131,12 @@ local highlights = {
["@text.reference"] = { ["@text.reference"] = {
fg = "#4fd6be" fg = "#4fd6be"
}, },
["@text.todo.checked"] = {
fg = "#4fd6be"
},
["@text.todo.unchecked"] = {
fg = "#82aaff"
},
["@text.warning"] = { ["@text.warning"] = {
bg = "#ffc777", bg = "#ffc777",
fg = "#222436" fg = "#222436"
@ -139,7 +154,7 @@ local highlights = {
fg = "#ffc777" fg = "#ffc777"
}, },
AlphaButtons = { AlphaButtons = {
fg = "#c099ff" fg = "#86e1fc"
}, },
AlphaFooter = { AlphaFooter = {
fg = "#ffc777", fg = "#ffc777",
@ -152,15 +167,63 @@ local highlights = {
fg = "#ff966c" fg = "#ff966c"
}, },
AlphaShortcut = { AlphaShortcut = {
fg = "#86e1fc" fg = "#ff966c"
}, },
Bold = { Bold = {
bold = true bold = true
}, },
BufferAlternate = {
bg = "#3b4261",
fg = "#c8d3f5"
},
BufferAlternateERROR = {
bg = "#3b4261",
fg = "#c53b53"
},
BufferAlternateHINT = {
bg = "#3b4261",
fg = "#4fd6be"
},
BufferAlternateINFO = {
bg = "#3b4261",
fg = "#0db9d7"
},
BufferAlternateIndex = {
bg = "#3b4261",
fg = "#0db9d7"
},
BufferAlternateMod = {
bg = "#3b4261",
fg = "#ffc777"
},
BufferAlternateSign = {
bg = "#3b4261",
fg = "#0db9d7"
},
BufferAlternateTarget = {
bg = "#3b4261",
fg = "#ff757f"
},
BufferAlternateWARN = {
bg = "#3b4261",
fg = "#ffc777"
},
BufferCurrent = { BufferCurrent = {
bg = "#3b4261", bg = "#3b4261",
fg = "#c8d3f5" fg = "#c8d3f5"
}, },
BufferCurrentERROR = {
bg = "#3b4261",
fg = "#c53b53"
},
BufferCurrentHINT = {
bg = "#3b4261",
fg = "#4fd6be"
},
BufferCurrentINFO = {
bg = "#3b4261",
fg = "#0db9d7"
},
BufferCurrentIndex = { BufferCurrentIndex = {
bg = "#3b4261", bg = "#3b4261",
fg = "#0db9d7" fg = "#0db9d7"
@ -177,10 +240,26 @@ local highlights = {
bg = "#3b4261", bg = "#3b4261",
fg = "#ff757f" fg = "#ff757f"
}, },
BufferCurrentWARN = {
bg = "#3b4261",
fg = "#ffc777"
},
BufferInactive = { BufferInactive = {
bg = "#1e2030", bg = "#1e2030",
fg = "#737aa2" fg = "#737aa2"
}, },
BufferInactiveERROR = {
bg = "#1e2030",
fg = "#94344a"
},
BufferInactiveHINT = {
bg = "#1e2030",
fg = "#42a195"
},
BufferInactiveINFO = {
bg = "#1e2030",
fg = "#138ca7"
},
BufferInactiveIndex = { BufferInactiveIndex = {
bg = "#1e2030", bg = "#1e2030",
fg = "#737aa2" fg = "#737aa2"
@ -197,12 +276,20 @@ local highlights = {
bg = "#1e2030", bg = "#1e2030",
fg = "#ff757f" fg = "#ff757f"
}, },
BufferInactiveWARN = {
bg = "#1e2030",
fg = "#bd9664"
},
BufferLineIndicatorSelected = { BufferLineIndicatorSelected = {
fg = "#7ca1f2" fg = "#7ca1f2"
}, },
BufferTabpage = { BufferOffset = {
bg = "#1e2030", bg = "#1e2030",
fg = "#589ed7" fg = "#737aa2"
},
BufferTabpageFill = {
bg = "#1e2030",
fg = "#737aa2"
}, },
BufferTabpages = { BufferTabpages = {
bg = "#1e2030", bg = "#1e2030",
@ -212,6 +299,18 @@ local highlights = {
bg = "#1e2030", bg = "#1e2030",
fg = "#c8d3f5" fg = "#c8d3f5"
}, },
BufferVisibleERROR = {
bg = "#1e2030",
fg = "#c53b53"
},
BufferVisibleHINT = {
bg = "#1e2030",
fg = "#4fd6be"
},
BufferVisibleINFO = {
bg = "#1e2030",
fg = "#0db9d7"
},
BufferVisibleIndex = { BufferVisibleIndex = {
bg = "#1e2030", bg = "#1e2030",
fg = "#0db9d7" fg = "#0db9d7"
@ -228,6 +327,10 @@ local highlights = {
bg = "#1e2030", bg = "#1e2030",
fg = "#ff757f" fg = "#ff757f"
}, },
BufferVisibleWARN = {
bg = "#1e2030",
fg = "#ffc777"
},
Character = { Character = {
fg = "#c3e88d" fg = "#c3e88d"
}, },
@ -346,13 +449,13 @@ local highlights = {
}, },
CmpItemMenu = { CmpItemMenu = {
bg = "NONE", bg = "NONE",
fg = "#7a88cf" fg = "#636da6"
}, },
ColorColumn = { ColorColumn = {
bg = "#1b1d2b" bg = "#1b1d2b"
}, },
Comment = { Comment = {
fg = "#7a88cf", fg = "#636da6",
style = { style = {
italic = true italic = true
} }
@ -485,7 +588,7 @@ local highlights = {
}, },
FoldColumn = { FoldColumn = {
bg = "#222436", bg = "#222436",
fg = "#7a88cf" fg = "#636da6"
}, },
Folded = { Folded = {
bg = "#3b4261", bg = "#3b4261",
@ -538,6 +641,9 @@ local highlights = {
GlyphPalette9 = { GlyphPalette9 = {
fg = "#ff757f" fg = "#ff757f"
}, },
Hlargs = {
fg = "#ffc777"
},
HopNextKey = { HopNextKey = {
bold = true, bold = true,
fg = "#ff007c" fg = "#ff007c"
@ -586,6 +692,14 @@ local highlights = {
italic = true italic = true
} }
}, },
LazyProgressDone = {
bold = true,
fg = "#ff007c"
},
LazyProgressTodo = {
bold = true,
fg = "#3b4261"
},
LeapBackdrop = { LeapBackdrop = {
fg = "#545c7e" fg = "#545c7e"
}, },
@ -649,7 +763,7 @@ local highlights = {
fg = "#3b4261" fg = "#3b4261"
}, },
LspCodeLens = { LspCodeLens = {
fg = "#7a88cf" fg = "#636da6"
}, },
LspFloatWinBorder = { LspFloatWinBorder = {
fg = "#589ed7" fg = "#589ed7"
@ -740,7 +854,7 @@ local highlights = {
fg = "#82aaff" fg = "#82aaff"
}, },
MiniStarterInactive = { MiniStarterInactive = {
fg = "#7a88cf", fg = "#636da6",
style = { style = {
italic = true italic = true
} }
@ -1162,7 +1276,7 @@ local highlights = {
}, },
NormalFloat = { NormalFloat = {
bg = "#1e2030", bg = "#1e2030",
fg = "#828bb8" fg = "#c8d3f5"
}, },
NormalNC = { NormalNC = {
bg = "#222436", bg = "#222436",
@ -1178,13 +1292,13 @@ local highlights = {
}, },
NotifyDEBUGBorder = { NotifyDEBUGBorder = {
bg = "#222436", bg = "#222436",
fg = "#3c4264" fg = "#363a58"
}, },
NotifyDEBUGIcon = { NotifyDEBUGIcon = {
fg = "#7a88cf" fg = "#636da6"
}, },
NotifyDEBUGTitle = { NotifyDEBUGTitle = {
fg = "#7a88cf" fg = "#636da6"
}, },
NotifyERRORBody = { NotifyERRORBody = {
bg = "#222436", bg = "#222436",
@ -1471,6 +1585,9 @@ local highlights = {
bg = "#ffc777", bg = "#ffc777",
fg = "#222436" fg = "#222436"
}, },
TreesitterContext = {
bg = "#363c58"
},
TroubleCount = { TroubleCount = {
bg = "#3b4261", bg = "#3b4261",
fg = "#c099ff" fg = "#c099ff"
@ -1513,10 +1630,10 @@ local highlights = {
fg = "#82aaff" fg = "#82aaff"
}, },
WhichKeySeparator = { WhichKeySeparator = {
fg = "#7a88cf" fg = "#636da6"
}, },
WhichKeySeperator = { WhichKeySeperator = {
fg = "#7a88cf" fg = "#636da6"
}, },
WhichKeyValue = { WhichKeyValue = {
fg = "#737aa2" fg = "#737aa2"
@ -1557,7 +1674,7 @@ local highlights = {
fg = "#c099ff" fg = "#c099ff"
}, },
diffLine = { diffLine = {
fg = "#7a88cf" fg = "#636da6"
}, },
diffNewFile = { diffNewFile = {
fg = "#ff966c" fg = "#ff966c"
@ -1577,6 +1694,10 @@ local highlights = {
healthWarning = { healthWarning = {
fg = "#ffc777" fg = "#ffc777"
}, },
helpCommand = {
bg = "#444a73",
fg = "#82aaff"
},
htmlH1 = { htmlH1 = {
bold = true, bold = true,
fg = "#c099ff" fg = "#c099ff"

View File

@ -31,7 +31,7 @@ local colors = {
error = "#db4b4b", error = "#db4b4b",
fg = "#c0caf5", fg = "#c0caf5",
fg_dark = "#a9b1d6", fg_dark = "#a9b1d6",
fg_float = "#a9b1d6", fg_float = "#c0caf5",
fg_gutter = "#3b4261", fg_gutter = "#3b4261",
fg_sidebar = "#a9b1d6", fg_sidebar = "#a9b1d6",
git = { git = {
@ -115,6 +115,15 @@ local highlights = {
bg = "#db4b4b", bg = "#db4b4b",
fg = "#1a1b26" fg = "#1a1b26"
}, },
["@text.diff.add"] = {
link = "DiffAdd"
},
["@text.diff.delete"] = {
link = "DiffDelete"
},
["@text.literal.markdown"] = {
link = "Normal"
},
["@text.literal.markdown_inline"] = { ["@text.literal.markdown_inline"] = {
bg = "#414868", bg = "#414868",
fg = "#7aa2f7" fg = "#7aa2f7"
@ -122,6 +131,12 @@ local highlights = {
["@text.reference"] = { ["@text.reference"] = {
fg = "#1abc9c" fg = "#1abc9c"
}, },
["@text.todo.checked"] = {
fg = "#73daca"
},
["@text.todo.unchecked"] = {
fg = "#7aa2f7"
},
["@text.warning"] = { ["@text.warning"] = {
bg = "#e0af68", bg = "#e0af68",
fg = "#1a1b26" fg = "#1a1b26"
@ -139,7 +154,7 @@ local highlights = {
fg = "#e0af68" fg = "#e0af68"
}, },
AlphaButtons = { AlphaButtons = {
fg = "#bb9af7" fg = "#7dcfff"
}, },
AlphaFooter = { AlphaFooter = {
fg = "#e0af68", fg = "#e0af68",
@ -152,15 +167,63 @@ local highlights = {
fg = "#ff9e64" fg = "#ff9e64"
}, },
AlphaShortcut = { AlphaShortcut = {
fg = "#7dcfff" fg = "#ff9e64"
}, },
Bold = { Bold = {
bold = true bold = true
}, },
BufferAlternate = {
bg = "#3b4261",
fg = "#c0caf5"
},
BufferAlternateERROR = {
bg = "#3b4261",
fg = "#db4b4b"
},
BufferAlternateHINT = {
bg = "#3b4261",
fg = "#1abc9c"
},
BufferAlternateINFO = {
bg = "#3b4261",
fg = "#0db9d7"
},
BufferAlternateIndex = {
bg = "#3b4261",
fg = "#0db9d7"
},
BufferAlternateMod = {
bg = "#3b4261",
fg = "#e0af68"
},
BufferAlternateSign = {
bg = "#3b4261",
fg = "#0db9d7"
},
BufferAlternateTarget = {
bg = "#3b4261",
fg = "#f7768e"
},
BufferAlternateWARN = {
bg = "#3b4261",
fg = "#e0af68"
},
BufferCurrent = { BufferCurrent = {
bg = "#3b4261", bg = "#3b4261",
fg = "#c0caf5" fg = "#c0caf5"
}, },
BufferCurrentERROR = {
bg = "#3b4261",
fg = "#db4b4b"
},
BufferCurrentHINT = {
bg = "#3b4261",
fg = "#1abc9c"
},
BufferCurrentINFO = {
bg = "#3b4261",
fg = "#0db9d7"
},
BufferCurrentIndex = { BufferCurrentIndex = {
bg = "#3b4261", bg = "#3b4261",
fg = "#0db9d7" fg = "#0db9d7"
@ -177,10 +240,26 @@ local highlights = {
bg = "#3b4261", bg = "#3b4261",
fg = "#f7768e" fg = "#f7768e"
}, },
BufferCurrentWARN = {
bg = "#3b4261",
fg = "#e0af68"
},
BufferInactive = { BufferInactive = {
bg = "#16161e", bg = "#16161e",
fg = "#737aa2" fg = "#737aa2"
}, },
BufferInactiveERROR = {
bg = "#16161e",
fg = "#a13d40"
},
BufferInactiveHINT = {
bg = "#16161e",
fg = "#1a8c79"
},
BufferInactiveINFO = {
bg = "#16161e",
fg = "#118aa2"
},
BufferInactiveIndex = { BufferInactiveIndex = {
bg = "#16161e", bg = "#16161e",
fg = "#737aa2" fg = "#737aa2"
@ -197,12 +276,20 @@ local highlights = {
bg = "#16161e", bg = "#16161e",
fg = "#f7768e" fg = "#f7768e"
}, },
BufferInactiveWARN = {
bg = "#16161e",
fg = "#a58354"
},
BufferLineIndicatorSelected = { BufferLineIndicatorSelected = {
fg = "#506d9b" fg = "#506d9b"
}, },
BufferTabpage = { BufferOffset = {
bg = "#16161e", bg = "#16161e",
fg = "#27a1b9" fg = "#737aa2"
},
BufferTabpageFill = {
bg = "#16161e",
fg = "#737aa2"
}, },
BufferTabpages = { BufferTabpages = {
bg = "#16161e", bg = "#16161e",
@ -212,6 +299,18 @@ local highlights = {
bg = "#16161e", bg = "#16161e",
fg = "#c0caf5" fg = "#c0caf5"
}, },
BufferVisibleERROR = {
bg = "#16161e",
fg = "#db4b4b"
},
BufferVisibleHINT = {
bg = "#16161e",
fg = "#1abc9c"
},
BufferVisibleINFO = {
bg = "#16161e",
fg = "#0db9d7"
},
BufferVisibleIndex = { BufferVisibleIndex = {
bg = "#16161e", bg = "#16161e",
fg = "#0db9d7" fg = "#0db9d7"
@ -228,6 +327,10 @@ local highlights = {
bg = "#16161e", bg = "#16161e",
fg = "#f7768e" fg = "#f7768e"
}, },
BufferVisibleWARN = {
bg = "#16161e",
fg = "#e0af68"
},
Character = { Character = {
fg = "#9ece6a" fg = "#9ece6a"
}, },
@ -538,6 +641,9 @@ local highlights = {
GlyphPalette9 = { GlyphPalette9 = {
fg = "#f7768e" fg = "#f7768e"
}, },
Hlargs = {
fg = "#e0af68"
},
HopNextKey = { HopNextKey = {
bold = true, bold = true,
fg = "#ff007c" fg = "#ff007c"
@ -586,6 +692,14 @@ local highlights = {
italic = true italic = true
} }
}, },
LazyProgressDone = {
bold = true,
fg = "#ff007c"
},
LazyProgressTodo = {
bold = true,
fg = "#3b4261"
},
LeapBackdrop = { LeapBackdrop = {
fg = "#545c7e" fg = "#545c7e"
}, },
@ -1162,7 +1276,7 @@ local highlights = {
}, },
NormalFloat = { NormalFloat = {
bg = "#16161e", bg = "#16161e",
fg = "#a9b1d6" fg = "#c0caf5"
}, },
NormalNC = { NormalNC = {
bg = "#1a1b26", bg = "#1a1b26",
@ -1471,6 +1585,9 @@ local highlights = {
bg = "#e0af68", bg = "#e0af68",
fg = "#1a1b26" fg = "#1a1b26"
}, },
TreesitterContext = {
bg = "#343a55"
},
TroubleCount = { TroubleCount = {
bg = "#3b4261", bg = "#3b4261",
fg = "#bb9af7" fg = "#bb9af7"
@ -1577,6 +1694,10 @@ local highlights = {
healthWarning = { healthWarning = {
fg = "#e0af68" fg = "#e0af68"
}, },
helpCommand = {
bg = "#414868",
fg = "#7aa2f7"
},
htmlH1 = { htmlH1 = {
bold = true, bold = true,
fg = "#bb9af7" fg = "#bb9af7"

View File

@ -31,7 +31,7 @@ local colors = {
error = "#db4b4b", error = "#db4b4b",
fg = "#c0caf5", fg = "#c0caf5",
fg_dark = "#a9b1d6", fg_dark = "#a9b1d6",
fg_float = "#a9b1d6", fg_float = "#c0caf5",
fg_gutter = "#3b4261", fg_gutter = "#3b4261",
fg_sidebar = "#a9b1d6", fg_sidebar = "#a9b1d6",
git = { git = {
@ -115,6 +115,15 @@ local highlights = {
bg = "#db4b4b", bg = "#db4b4b",
fg = "#24283b" fg = "#24283b"
}, },
["@text.diff.add"] = {
link = "DiffAdd"
},
["@text.diff.delete"] = {
link = "DiffDelete"
},
["@text.literal.markdown"] = {
link = "Normal"
},
["@text.literal.markdown_inline"] = { ["@text.literal.markdown_inline"] = {
bg = "#414868", bg = "#414868",
fg = "#7aa2f7" fg = "#7aa2f7"
@ -122,6 +131,12 @@ local highlights = {
["@text.reference"] = { ["@text.reference"] = {
fg = "#1abc9c" fg = "#1abc9c"
}, },
["@text.todo.checked"] = {
fg = "#73daca"
},
["@text.todo.unchecked"] = {
fg = "#7aa2f7"
},
["@text.warning"] = { ["@text.warning"] = {
bg = "#e0af68", bg = "#e0af68",
fg = "#24283b" fg = "#24283b"
@ -139,7 +154,7 @@ local highlights = {
fg = "#e0af68" fg = "#e0af68"
}, },
AlphaButtons = { AlphaButtons = {
fg = "#bb9af7" fg = "#7dcfff"
}, },
AlphaFooter = { AlphaFooter = {
fg = "#e0af68", fg = "#e0af68",
@ -152,15 +167,63 @@ local highlights = {
fg = "#ff9e64" fg = "#ff9e64"
}, },
AlphaShortcut = { AlphaShortcut = {
fg = "#7dcfff" fg = "#ff9e64"
}, },
Bold = { Bold = {
bold = true bold = true
}, },
BufferAlternate = {
bg = "#3b4261",
fg = "#c0caf5"
},
BufferAlternateERROR = {
bg = "#3b4261",
fg = "#db4b4b"
},
BufferAlternateHINT = {
bg = "#3b4261",
fg = "#1abc9c"
},
BufferAlternateINFO = {
bg = "#3b4261",
fg = "#0db9d7"
},
BufferAlternateIndex = {
bg = "#3b4261",
fg = "#0db9d7"
},
BufferAlternateMod = {
bg = "#3b4261",
fg = "#e0af68"
},
BufferAlternateSign = {
bg = "#3b4261",
fg = "#0db9d7"
},
BufferAlternateTarget = {
bg = "#3b4261",
fg = "#f7768e"
},
BufferAlternateWARN = {
bg = "#3b4261",
fg = "#e0af68"
},
BufferCurrent = { BufferCurrent = {
bg = "#3b4261", bg = "#3b4261",
fg = "#c0caf5" fg = "#c0caf5"
}, },
BufferCurrentERROR = {
bg = "#3b4261",
fg = "#db4b4b"
},
BufferCurrentHINT = {
bg = "#3b4261",
fg = "#1abc9c"
},
BufferCurrentINFO = {
bg = "#3b4261",
fg = "#0db9d7"
},
BufferCurrentIndex = { BufferCurrentIndex = {
bg = "#3b4261", bg = "#3b4261",
fg = "#0db9d7" fg = "#0db9d7"
@ -177,10 +240,26 @@ local highlights = {
bg = "#3b4261", bg = "#3b4261",
fg = "#f7768e" fg = "#f7768e"
}, },
BufferCurrentWARN = {
bg = "#3b4261",
fg = "#e0af68"
},
BufferInactive = { BufferInactive = {
bg = "#1f2335", bg = "#1f2335",
fg = "#737aa2" fg = "#737aa2"
}, },
BufferInactiveERROR = {
bg = "#1f2335",
fg = "#a44146"
},
BufferInactiveHINT = {
bg = "#1f2335",
fg = "#1d907f"
},
BufferInactiveINFO = {
bg = "#1f2335",
fg = "#148ea8"
},
BufferInactiveIndex = { BufferInactiveIndex = {
bg = "#1f2335", bg = "#1f2335",
fg = "#737aa2" fg = "#737aa2"
@ -197,12 +276,20 @@ local highlights = {
bg = "#1f2335", bg = "#1f2335",
fg = "#f7768e" fg = "#f7768e"
}, },
BufferInactiveWARN = {
bg = "#1f2335",
fg = "#a8875b"
},
BufferLineIndicatorSelected = { BufferLineIndicatorSelected = {
fg = "#506d9b" fg = "#506d9b"
}, },
BufferTabpage = { BufferOffset = {
bg = "#1f2335", bg = "#1f2335",
fg = "#29a4bd" fg = "#737aa2"
},
BufferTabpageFill = {
bg = "#1f2335",
fg = "#737aa2"
}, },
BufferTabpages = { BufferTabpages = {
bg = "#1f2335", bg = "#1f2335",
@ -212,6 +299,18 @@ local highlights = {
bg = "#1f2335", bg = "#1f2335",
fg = "#c0caf5" fg = "#c0caf5"
}, },
BufferVisibleERROR = {
bg = "#1f2335",
fg = "#db4b4b"
},
BufferVisibleHINT = {
bg = "#1f2335",
fg = "#1abc9c"
},
BufferVisibleINFO = {
bg = "#1f2335",
fg = "#0db9d7"
},
BufferVisibleIndex = { BufferVisibleIndex = {
bg = "#1f2335", bg = "#1f2335",
fg = "#0db9d7" fg = "#0db9d7"
@ -228,6 +327,10 @@ local highlights = {
bg = "#1f2335", bg = "#1f2335",
fg = "#f7768e" fg = "#f7768e"
}, },
BufferVisibleWARN = {
bg = "#1f2335",
fg = "#e0af68"
},
Character = { Character = {
fg = "#9ece6a" fg = "#9ece6a"
}, },
@ -538,6 +641,9 @@ local highlights = {
GlyphPalette9 = { GlyphPalette9 = {
fg = "#f7768e" fg = "#f7768e"
}, },
Hlargs = {
fg = "#e0af68"
},
HopNextKey = { HopNextKey = {
bold = true, bold = true,
fg = "#ff007c" fg = "#ff007c"
@ -586,6 +692,14 @@ local highlights = {
italic = true italic = true
} }
}, },
LazyProgressDone = {
bold = true,
fg = "#ff007c"
},
LazyProgressTodo = {
bold = true,
fg = "#3b4261"
},
LeapBackdrop = { LeapBackdrop = {
fg = "#545c7e" fg = "#545c7e"
}, },
@ -1162,7 +1276,7 @@ local highlights = {
}, },
NormalFloat = { NormalFloat = {
bg = "#1f2335", bg = "#1f2335",
fg = "#a9b1d6" fg = "#c0caf5"
}, },
NormalNC = { NormalNC = {
bg = "#24283b", bg = "#24283b",
@ -1471,6 +1585,9 @@ local highlights = {
bg = "#e0af68", bg = "#e0af68",
fg = "#24283b" fg = "#24283b"
}, },
TreesitterContext = {
bg = "#363d59"
},
TroubleCount = { TroubleCount = {
bg = "#3b4261", bg = "#3b4261",
fg = "#bb9af7" fg = "#bb9af7"
@ -1577,6 +1694,10 @@ local highlights = {
healthWarning = { healthWarning = {
fg = "#e0af68" fg = "#e0af68"
}, },
helpCommand = {
bg = "#414868",
fg = "#7aa2f7"
},
htmlH1 = { htmlH1 = {
bold = true, bold = true,
fg = "#bb9af7" fg = "#bb9af7"

View File

@ -67,7 +67,7 @@
<key>settings</key> <key>settings</key>
<dict> <dict>
<key>foreground</key> <key>foreground</key>
<string>#7a88cf</string> <string>#636da6</string>
</dict> </dict>
</dict> </dict>
<dict> <dict>
@ -78,7 +78,7 @@
<key>settings</key> <key>settings</key>
<dict> <dict>
<key>foreground</key> <key>foreground</key>
<string>#7a88cf</string> <string>#636da6</string>
</dict> </dict>
</dict> </dict>
<dict> <dict>

View File

@ -744,7 +744,7 @@
<key>settings</key> <key>settings</key>
<dict> <dict>
<key>foreground</key> <key>foreground</key>
<string>#4097a3</string> <string>#2c6c75</string>
</dict> </dict>
</dict> </dict>
<dict> <dict>
@ -755,7 +755,7 @@
<key>settings</key> <key>settings</key>
<dict> <dict>
<key>foreground</key> <key>foreground</key>
<string>#c47981</string> <string>#914c54</string>
</dict> </dict>
</dict> </dict>
<dict> <dict>
@ -766,7 +766,7 @@
<key>settings</key> <key>settings</key>
<dict> <dict>
<key>foreground</key> <key>foreground</key>
<string>#506d9b</string> <string>#6183b9</string>
</dict> </dict>
</dict> </dict>
<dict> <dict>