chore(build): auto-generate extras
This commit is contained in:
parent
1248543d7c
commit
802207d814
@ -1,12 +1,12 @@
|
||||
[delta]
|
||||
minus-style = syntax "#dfccd4"
|
||||
minus-non-emph-style = syntax "#dfccd4"
|
||||
minus-emph-style = syntax "#672d33"
|
||||
minus-emph-style = syntax "#d99ea2"
|
||||
minus-empty-line-marker-style = syntax "#dfccd4"
|
||||
line-numbers-minus-style = "#b2555b"
|
||||
line-numbers-minus-style = "#c25d64"
|
||||
plus-style = syntax "#aecde6"
|
||||
plus-non-emph-style = syntax "#aecde6"
|
||||
plus-emph-style = syntax "#28505c"
|
||||
plus-emph-style = syntax "#57a7bc"
|
||||
plus-empty-line-marker-style = syntax "#aecde6"
|
||||
line-numbers-plus-style = "#266d6a"
|
||||
line-numbers-plus-style = "#399a96"
|
||||
line-numbers-zero-style = "#a8aecb"
|
||||
|
@ -3,10 +3,10 @@
|
||||
minus-non-emph-style = syntax "#37222c"
|
||||
minus-emph-style = syntax "#713137"
|
||||
minus-empty-line-marker-style = syntax "#37222c"
|
||||
line-numbers-minus-style = "#c25d64"
|
||||
line-numbers-minus-style = "#b2555b"
|
||||
plus-style = syntax "#20303b"
|
||||
plus-non-emph-style = syntax "#20303b"
|
||||
plus-emph-style = syntax "#2c5a66"
|
||||
plus-empty-line-marker-style = syntax "#20303b"
|
||||
line-numbers-plus-style = "#399a96"
|
||||
line-numbers-plus-style = "#266d6a"
|
||||
line-numbers-zero-style = "#3b4261"
|
||||
|
@ -3,10 +3,10 @@
|
||||
minus-non-emph-style = syntax "#3f2d3d"
|
||||
minus-emph-style = syntax "#763842"
|
||||
minus-empty-line-marker-style = syntax "#3f2d3d"
|
||||
line-numbers-minus-style = "#c25d64"
|
||||
line-numbers-minus-style = "#b2555b"
|
||||
plus-style = syntax "#283b4d"
|
||||
plus-non-emph-style = syntax "#283b4d"
|
||||
plus-emph-style = syntax "#316172"
|
||||
plus-empty-line-marker-style = syntax "#283b4d"
|
||||
line-numbers-plus-style = "#399a96"
|
||||
line-numbers-plus-style = "#266d6a"
|
||||
line-numbers-zero-style = "#3b4261"
|
||||
|
@ -22,6 +22,10 @@ local colors = {
|
||||
cyan = "#007197",
|
||||
dark3 = "#8990b3",
|
||||
dark5 = "#68709a",
|
||||
delta = {
|
||||
add = "#57a7bc",
|
||||
delete = "#d99ea2"
|
||||
},
|
||||
diff = {
|
||||
add = "#aecde6",
|
||||
change = "#d6d8e3",
|
||||
@ -35,15 +39,15 @@ local colors = {
|
||||
fg_gutter = "#a8aecb",
|
||||
fg_sidebar = "#6172b0",
|
||||
git = {
|
||||
add = "#2c6c75",
|
||||
change = "#6183b9",
|
||||
delete = "#914c54",
|
||||
add = "#4197a4",
|
||||
change = "#506d9c",
|
||||
delete = "#c47981",
|
||||
ignore = "#8990b3"
|
||||
},
|
||||
gitSigns = {
|
||||
add = "#266d6a",
|
||||
change = "#526c9e",
|
||||
delete = "#b2555b"
|
||||
add = "#399a96",
|
||||
change = "#6482bd",
|
||||
delete = "#c25d64"
|
||||
},
|
||||
green = "#587539",
|
||||
green1 = "#387068",
|
||||
@ -93,7 +97,7 @@ local highlights = {
|
||||
link = "@constant"
|
||||
},
|
||||
["@lsp.type.interface"] = {
|
||||
link = "@type"
|
||||
fg = "#35717b"
|
||||
},
|
||||
["@lsp.type.keyword"] = {
|
||||
link = "@keyword"
|
||||
@ -123,6 +127,9 @@ local highlights = {
|
||||
["@lsp.typemod.string.injected"] = {
|
||||
link = "@string"
|
||||
},
|
||||
["@lsp.typemod.type.defaultLibrary"] = {
|
||||
fg = "#2496ac"
|
||||
},
|
||||
["@lsp.typemod.variable.defaultLibrary"] = {
|
||||
link = "@variable.builtin"
|
||||
},
|
||||
@ -173,9 +180,6 @@ local highlights = {
|
||||
["@text.diff.delete"] = {
|
||||
link = "DiffDelete"
|
||||
},
|
||||
["@text.literal.markdown"] = {
|
||||
link = "Normal"
|
||||
},
|
||||
["@text.literal.markdown_inline"] = {
|
||||
bg = "#a1a6c5",
|
||||
fg = "#2e7de9"
|
||||
@ -193,6 +197,9 @@ local highlights = {
|
||||
bg = "#8c6c3e",
|
||||
fg = "#e1e2e7"
|
||||
},
|
||||
["@type.builtin"] = {
|
||||
fg = "#2496ac"
|
||||
},
|
||||
["@variable"] = {
|
||||
fg = "#3760bf",
|
||||
style = {}
|
||||
@ -286,7 +293,7 @@ local highlights = {
|
||||
},
|
||||
BufferCurrentSign = {
|
||||
bg = "#e1e2e7",
|
||||
fg = "#07879d"
|
||||
fg = "#e1e2e7"
|
||||
},
|
||||
BufferCurrentTarget = {
|
||||
bg = "#e1e2e7",
|
||||
@ -297,7 +304,7 @@ local highlights = {
|
||||
fg = "#8c6c3e"
|
||||
},
|
||||
BufferInactive = {
|
||||
bg = "#c4c8da",
|
||||
bg = "#d5d7e1",
|
||||
fg = "#7f84a4"
|
||||
},
|
||||
BufferInactiveERROR = {
|
||||
@ -321,8 +328,8 @@ local highlights = {
|
||||
fg = "#a48150"
|
||||
},
|
||||
BufferInactiveSign = {
|
||||
bg = "#c4c8da",
|
||||
fg = "#2496ac"
|
||||
bg = "#d5d7e1",
|
||||
fg = "#e1e2e7"
|
||||
},
|
||||
BufferInactiveTarget = {
|
||||
bg = "#c4c8da",
|
||||
@ -333,14 +340,14 @@ local highlights = {
|
||||
fg = "#a48150"
|
||||
},
|
||||
BufferLineIndicatorSelected = {
|
||||
fg = "#506d9b"
|
||||
fg = "#506d9c"
|
||||
},
|
||||
BufferOffset = {
|
||||
bg = "#e9e9ec",
|
||||
fg = "#68709a"
|
||||
},
|
||||
BufferTabpageFill = {
|
||||
bg = "#cbccd3",
|
||||
bg = "#cacddc",
|
||||
fg = "#68709a"
|
||||
},
|
||||
BufferTabpages = {
|
||||
@ -542,6 +549,9 @@ local highlights = {
|
||||
CursorLineNr = {
|
||||
fg = "#68709a"
|
||||
},
|
||||
DapStoppedLine = {
|
||||
bg = "#d0cccf"
|
||||
},
|
||||
DashboardCenter = {
|
||||
fg = "#9854f1"
|
||||
},
|
||||
@ -555,6 +565,9 @@ local highlights = {
|
||||
DashboardShortCut = {
|
||||
fg = "#007197"
|
||||
},
|
||||
Debug = {
|
||||
fg = "#b15c00"
|
||||
},
|
||||
DefinitionCount = {
|
||||
fg = "#7847bd"
|
||||
},
|
||||
@ -589,6 +602,9 @@ local highlights = {
|
||||
sp = "#8c6c3e",
|
||||
undercurl = true
|
||||
},
|
||||
DiagnosticUnnecessary = {
|
||||
fg = "#a1a6c5"
|
||||
},
|
||||
DiagnosticVirtualTextError = {
|
||||
bg = "#e0d3dd",
|
||||
fg = "#c64343"
|
||||
@ -662,7 +678,7 @@ local highlights = {
|
||||
fg = "#399a96"
|
||||
},
|
||||
GitGutterChange = {
|
||||
fg = "#6382bd"
|
||||
fg = "#6482bd"
|
||||
},
|
||||
GitGutterDelete = {
|
||||
fg = "#c25d64"
|
||||
@ -671,7 +687,7 @@ local highlights = {
|
||||
fg = "#399a96"
|
||||
},
|
||||
GitSignsChange = {
|
||||
fg = "#6382bd"
|
||||
fg = "#6482bd"
|
||||
},
|
||||
GitSignsDelete = {
|
||||
fg = "#c25d64"
|
||||
@ -1168,7 +1184,7 @@ local highlights = {
|
||||
},
|
||||
NeogitDiffAddHighlight = {
|
||||
bg = "#aecde6",
|
||||
fg = "#4097a3"
|
||||
fg = "#4197a4"
|
||||
},
|
||||
NeogitDiffContextHighlight = {
|
||||
bg = "#c3c6d8",
|
||||
@ -1423,10 +1439,10 @@ local highlights = {
|
||||
fg = "#c47981"
|
||||
},
|
||||
NvimTreeGitDirty = {
|
||||
fg = "#506d9b"
|
||||
fg = "#506d9c"
|
||||
},
|
||||
NvimTreeGitNew = {
|
||||
fg = "#4097a3"
|
||||
fg = "#4197a4"
|
||||
},
|
||||
NvimTreeImageFile = {
|
||||
fg = "#6172b0"
|
||||
@ -1738,10 +1754,10 @@ local highlights = {
|
||||
bg = "#e9e9ec"
|
||||
},
|
||||
diffAdded = {
|
||||
fg = "#4097a3"
|
||||
fg = "#4197a4"
|
||||
},
|
||||
diffChanged = {
|
||||
fg = "#506d9b"
|
||||
fg = "#506d9c"
|
||||
},
|
||||
diffFile = {
|
||||
fg = "#2e7de9"
|
||||
|
@ -22,6 +22,10 @@ local colors = {
|
||||
cyan = "#86e1fc",
|
||||
dark3 = "#545c7e",
|
||||
dark5 = "#737aa2",
|
||||
delta = {
|
||||
add = "#305f6f",
|
||||
delete = "#6b2e43"
|
||||
},
|
||||
diff = {
|
||||
add = "#273849",
|
||||
change = "#252a3f",
|
||||
@ -93,7 +97,7 @@ local highlights = {
|
||||
link = "@constant"
|
||||
},
|
||||
["@lsp.type.interface"] = {
|
||||
link = "@type"
|
||||
fg = "#93d0ff"
|
||||
},
|
||||
["@lsp.type.keyword"] = {
|
||||
link = "@keyword"
|
||||
@ -123,6 +127,9 @@ local highlights = {
|
||||
["@lsp.typemod.string.injected"] = {
|
||||
link = "@string"
|
||||
},
|
||||
["@lsp.typemod.type.defaultLibrary"] = {
|
||||
fg = "#589ed7"
|
||||
},
|
||||
["@lsp.typemod.variable.defaultLibrary"] = {
|
||||
link = "@variable.builtin"
|
||||
},
|
||||
@ -173,9 +180,6 @@ local highlights = {
|
||||
["@text.diff.delete"] = {
|
||||
link = "DiffDelete"
|
||||
},
|
||||
["@text.literal.markdown"] = {
|
||||
link = "Normal"
|
||||
},
|
||||
["@text.literal.markdown_inline"] = {
|
||||
bg = "#444a73",
|
||||
fg = "#82aaff"
|
||||
@ -193,6 +197,9 @@ local highlights = {
|
||||
bg = "#ffc777",
|
||||
fg = "#222436"
|
||||
},
|
||||
["@type.builtin"] = {
|
||||
fg = "#589ed7"
|
||||
},
|
||||
["@variable"] = {
|
||||
fg = "#c8d3f5",
|
||||
style = {}
|
||||
@ -286,7 +293,7 @@ local highlights = {
|
||||
},
|
||||
BufferCurrentSign = {
|
||||
bg = "#222436",
|
||||
fg = "#0db9d7"
|
||||
fg = "#222436"
|
||||
},
|
||||
BufferCurrentTarget = {
|
||||
bg = "#222436",
|
||||
@ -297,7 +304,7 @@ local highlights = {
|
||||
fg = "#ffc777"
|
||||
},
|
||||
BufferInactive = {
|
||||
bg = "#2f334d",
|
||||
bg = "#272a3f",
|
||||
fg = "#63698c"
|
||||
},
|
||||
BufferInactiveERROR = {
|
||||
@ -321,8 +328,8 @@ local highlights = {
|
||||
fg = "#d3a66a"
|
||||
},
|
||||
BufferInactiveSign = {
|
||||
bg = "#2f334d",
|
||||
fg = "#589ed7"
|
||||
bg = "#272a3f",
|
||||
fg = "#222436"
|
||||
},
|
||||
BufferInactiveTarget = {
|
||||
bg = "#2f334d",
|
||||
@ -340,7 +347,7 @@ local highlights = {
|
||||
fg = "#737aa2"
|
||||
},
|
||||
BufferTabpageFill = {
|
||||
bg = "#313344",
|
||||
bg = "#2c3048",
|
||||
fg = "#737aa2"
|
||||
},
|
||||
BufferTabpages = {
|
||||
@ -542,6 +549,9 @@ local highlights = {
|
||||
CursorLineNr = {
|
||||
fg = "#737aa2"
|
||||
},
|
||||
DapStoppedLine = {
|
||||
bg = "#38343d"
|
||||
},
|
||||
DashboardCenter = {
|
||||
fg = "#c099ff"
|
||||
},
|
||||
@ -555,6 +565,9 @@ local highlights = {
|
||||
DashboardShortCut = {
|
||||
fg = "#86e1fc"
|
||||
},
|
||||
Debug = {
|
||||
fg = "#ff966c"
|
||||
},
|
||||
DefinitionCount = {
|
||||
fg = "#fca7ea"
|
||||
},
|
||||
@ -589,6 +602,9 @@ local highlights = {
|
||||
sp = "#ffc777",
|
||||
undercurl = true
|
||||
},
|
||||
DiagnosticUnnecessary = {
|
||||
fg = "#444a73"
|
||||
},
|
||||
DiagnosticVirtualTextError = {
|
||||
bg = "#322639",
|
||||
fg = "#c53b53"
|
||||
|
@ -22,6 +22,10 @@ local colors = {
|
||||
cyan = "#7dcfff",
|
||||
dark3 = "#545c7e",
|
||||
dark5 = "#737aa2",
|
||||
delta = {
|
||||
add = "#2c5a66",
|
||||
delete = "#713137"
|
||||
},
|
||||
diff = {
|
||||
add = "#20303b",
|
||||
change = "#1f2231",
|
||||
@ -35,15 +39,15 @@ local colors = {
|
||||
fg_gutter = "#3b4261",
|
||||
fg_sidebar = "#a9b1d6",
|
||||
git = {
|
||||
add = "#4097a3",
|
||||
change = "#506d9b",
|
||||
delete = "#c47981",
|
||||
add = "#449dab",
|
||||
change = "#6183bb",
|
||||
delete = "#914c54",
|
||||
ignore = "#545c7e"
|
||||
},
|
||||
gitSigns = {
|
||||
add = "#399a96",
|
||||
change = "#6382bd",
|
||||
delete = "#c25d64"
|
||||
add = "#266d6a",
|
||||
change = "#536c9e",
|
||||
delete = "#b2555b"
|
||||
},
|
||||
green = "#9ece6a",
|
||||
green1 = "#73daca",
|
||||
@ -93,7 +97,7 @@ local highlights = {
|
||||
link = "@constant"
|
||||
},
|
||||
["@lsp.type.interface"] = {
|
||||
link = "@type"
|
||||
fg = "#6ad5e8"
|
||||
},
|
||||
["@lsp.type.keyword"] = {
|
||||
link = "@keyword"
|
||||
@ -123,6 +127,9 @@ local highlights = {
|
||||
["@lsp.typemod.string.injected"] = {
|
||||
link = "@string"
|
||||
},
|
||||
["@lsp.typemod.type.defaultLibrary"] = {
|
||||
fg = "#27a1b9"
|
||||
},
|
||||
["@lsp.typemod.variable.defaultLibrary"] = {
|
||||
link = "@variable.builtin"
|
||||
},
|
||||
@ -173,9 +180,6 @@ local highlights = {
|
||||
["@text.diff.delete"] = {
|
||||
link = "DiffDelete"
|
||||
},
|
||||
["@text.literal.markdown"] = {
|
||||
link = "Normal"
|
||||
},
|
||||
["@text.literal.markdown_inline"] = {
|
||||
bg = "#414868",
|
||||
fg = "#7aa2f7"
|
||||
@ -193,6 +197,9 @@ local highlights = {
|
||||
bg = "#e0af68",
|
||||
fg = "#1a1b26"
|
||||
},
|
||||
["@type.builtin"] = {
|
||||
fg = "#27a1b9"
|
||||
},
|
||||
["@variable"] = {
|
||||
fg = "#c0caf5",
|
||||
style = {}
|
||||
@ -286,7 +293,7 @@ local highlights = {
|
||||
},
|
||||
BufferCurrentSign = {
|
||||
bg = "#1a1b26",
|
||||
fg = "#0db9d7"
|
||||
fg = "#1a1b26"
|
||||
},
|
||||
BufferCurrentTarget = {
|
||||
bg = "#1a1b26",
|
||||
@ -297,7 +304,7 @@ local highlights = {
|
||||
fg = "#e0af68"
|
||||
},
|
||||
BufferInactive = {
|
||||
bg = "#292e42",
|
||||
bg = "#202331",
|
||||
fg = "#616789"
|
||||
},
|
||||
BufferInactiveERROR = {
|
||||
@ -321,8 +328,8 @@ local highlights = {
|
||||
fg = "#b8915b"
|
||||
},
|
||||
BufferInactiveSign = {
|
||||
bg = "#292e42",
|
||||
fg = "#27a1b9"
|
||||
bg = "#202331",
|
||||
fg = "#1a1b26"
|
||||
},
|
||||
BufferInactiveTarget = {
|
||||
bg = "#292e42",
|
||||
@ -333,14 +340,14 @@ local highlights = {
|
||||
fg = "#b8915b"
|
||||
},
|
||||
BufferLineIndicatorSelected = {
|
||||
fg = "#506d9b"
|
||||
fg = "#6183bb"
|
||||
},
|
||||
BufferOffset = {
|
||||
bg = "#16161e",
|
||||
fg = "#737aa2"
|
||||
},
|
||||
BufferTabpageFill = {
|
||||
bg = "#2a2b35",
|
||||
bg = "#262a3c",
|
||||
fg = "#737aa2"
|
||||
},
|
||||
BufferTabpages = {
|
||||
@ -542,6 +549,9 @@ local highlights = {
|
||||
CursorLineNr = {
|
||||
fg = "#737aa2"
|
||||
},
|
||||
DapStoppedLine = {
|
||||
bg = "#2e2a2d"
|
||||
},
|
||||
DashboardCenter = {
|
||||
fg = "#bb9af7"
|
||||
},
|
||||
@ -555,6 +565,9 @@ local highlights = {
|
||||
DashboardShortCut = {
|
||||
fg = "#7dcfff"
|
||||
},
|
||||
Debug = {
|
||||
fg = "#ff9e64"
|
||||
},
|
||||
DefinitionCount = {
|
||||
fg = "#9d7cd8"
|
||||
},
|
||||
@ -589,6 +602,9 @@ local highlights = {
|
||||
sp = "#e0af68",
|
||||
undercurl = true
|
||||
},
|
||||
DiagnosticUnnecessary = {
|
||||
fg = "#414868"
|
||||
},
|
||||
DiagnosticVirtualTextError = {
|
||||
bg = "#2d202a",
|
||||
fg = "#db4b4b"
|
||||
@ -659,22 +675,22 @@ local highlights = {
|
||||
style = {}
|
||||
},
|
||||
GitGutterAdd = {
|
||||
fg = "#399a96"
|
||||
fg = "#266d6a"
|
||||
},
|
||||
GitGutterChange = {
|
||||
fg = "#6382bd"
|
||||
fg = "#536c9e"
|
||||
},
|
||||
GitGutterDelete = {
|
||||
fg = "#c25d64"
|
||||
fg = "#b2555b"
|
||||
},
|
||||
GitSignsAdd = {
|
||||
fg = "#399a96"
|
||||
fg = "#266d6a"
|
||||
},
|
||||
GitSignsChange = {
|
||||
fg = "#6382bd"
|
||||
fg = "#536c9e"
|
||||
},
|
||||
GitSignsDelete = {
|
||||
fg = "#c25d64"
|
||||
fg = "#b2555b"
|
||||
},
|
||||
GlyphPalette1 = {
|
||||
fg = "#db4b4b"
|
||||
@ -1168,7 +1184,7 @@ local highlights = {
|
||||
},
|
||||
NeogitDiffAddHighlight = {
|
||||
bg = "#20303b",
|
||||
fg = "#4097a3"
|
||||
fg = "#449dab"
|
||||
},
|
||||
NeogitDiffContextHighlight = {
|
||||
bg = "#2b2f44",
|
||||
@ -1176,7 +1192,7 @@ local highlights = {
|
||||
},
|
||||
NeogitDiffDeleteHighlight = {
|
||||
bg = "#37222c",
|
||||
fg = "#c47981"
|
||||
fg = "#914c54"
|
||||
},
|
||||
NeogitHunkHeader = {
|
||||
bg = "#292e42",
|
||||
@ -1420,13 +1436,13 @@ local highlights = {
|
||||
fg = "#7aa2f7"
|
||||
},
|
||||
NvimTreeGitDeleted = {
|
||||
fg = "#c47981"
|
||||
fg = "#914c54"
|
||||
},
|
||||
NvimTreeGitDirty = {
|
||||
fg = "#506d9b"
|
||||
fg = "#6183bb"
|
||||
},
|
||||
NvimTreeGitNew = {
|
||||
fg = "#4097a3"
|
||||
fg = "#449dab"
|
||||
},
|
||||
NvimTreeImageFile = {
|
||||
fg = "#a9b1d6"
|
||||
@ -1738,10 +1754,10 @@ local highlights = {
|
||||
bg = "#16161e"
|
||||
},
|
||||
diffAdded = {
|
||||
fg = "#4097a3"
|
||||
fg = "#449dab"
|
||||
},
|
||||
diffChanged = {
|
||||
fg = "#506d9b"
|
||||
fg = "#6183bb"
|
||||
},
|
||||
diffFile = {
|
||||
fg = "#7aa2f7"
|
||||
@ -1759,7 +1775,7 @@ local highlights = {
|
||||
fg = "#e0af68"
|
||||
},
|
||||
diffRemoved = {
|
||||
fg = "#c47981"
|
||||
fg = "#914c54"
|
||||
},
|
||||
healthError = {
|
||||
fg = "#db4b4b"
|
||||
|
@ -22,6 +22,10 @@ local colors = {
|
||||
cyan = "#7dcfff",
|
||||
dark3 = "#545c7e",
|
||||
dark5 = "#737aa2",
|
||||
delta = {
|
||||
add = "#316172",
|
||||
delete = "#763842"
|
||||
},
|
||||
diff = {
|
||||
add = "#283b4d",
|
||||
change = "#272d43",
|
||||
@ -35,15 +39,15 @@ local colors = {
|
||||
fg_gutter = "#3b4261",
|
||||
fg_sidebar = "#a9b1d6",
|
||||
git = {
|
||||
add = "#4097a3",
|
||||
change = "#506d9b",
|
||||
delete = "#c47981",
|
||||
add = "#449dab",
|
||||
change = "#6183bb",
|
||||
delete = "#914c54",
|
||||
ignore = "#545c7e"
|
||||
},
|
||||
gitSigns = {
|
||||
add = "#399a96",
|
||||
change = "#6382bd",
|
||||
delete = "#c25d64"
|
||||
add = "#266d6a",
|
||||
change = "#536c9e",
|
||||
delete = "#b2555b"
|
||||
},
|
||||
green = "#9ece6a",
|
||||
green1 = "#73daca",
|
||||
@ -93,7 +97,7 @@ local highlights = {
|
||||
link = "@constant"
|
||||
},
|
||||
["@lsp.type.interface"] = {
|
||||
link = "@type"
|
||||
fg = "#6ad5e8"
|
||||
},
|
||||
["@lsp.type.keyword"] = {
|
||||
link = "@keyword"
|
||||
@ -123,6 +127,9 @@ local highlights = {
|
||||
["@lsp.typemod.string.injected"] = {
|
||||
link = "@string"
|
||||
},
|
||||
["@lsp.typemod.type.defaultLibrary"] = {
|
||||
fg = "#29a4bd"
|
||||
},
|
||||
["@lsp.typemod.variable.defaultLibrary"] = {
|
||||
link = "@variable.builtin"
|
||||
},
|
||||
@ -173,9 +180,6 @@ local highlights = {
|
||||
["@text.diff.delete"] = {
|
||||
link = "DiffDelete"
|
||||
},
|
||||
["@text.literal.markdown"] = {
|
||||
link = "Normal"
|
||||
},
|
||||
["@text.literal.markdown_inline"] = {
|
||||
bg = "#414868",
|
||||
fg = "#7aa2f7"
|
||||
@ -193,6 +197,9 @@ local highlights = {
|
||||
bg = "#e0af68",
|
||||
fg = "#24283b"
|
||||
},
|
||||
["@type.builtin"] = {
|
||||
fg = "#29a4bd"
|
||||
},
|
||||
["@variable"] = {
|
||||
fg = "#c0caf5",
|
||||
style = {}
|
||||
@ -286,7 +293,7 @@ local highlights = {
|
||||
},
|
||||
BufferCurrentSign = {
|
||||
bg = "#24283b",
|
||||
fg = "#0db9d7"
|
||||
fg = "#24283b"
|
||||
},
|
||||
BufferCurrentTarget = {
|
||||
bg = "#24283b",
|
||||
@ -297,7 +304,7 @@ local highlights = {
|
||||
fg = "#e0af68"
|
||||
},
|
||||
BufferInactive = {
|
||||
bg = "#292e42",
|
||||
bg = "#262a3e",
|
||||
fg = "#636a8d"
|
||||
},
|
||||
BufferInactiveERROR = {
|
||||
@ -321,8 +328,8 @@ local highlights = {
|
||||
fg = "#ba945f"
|
||||
},
|
||||
BufferInactiveSign = {
|
||||
bg = "#292e42",
|
||||
fg = "#29a4bd"
|
||||
bg = "#262a3e",
|
||||
fg = "#24283b"
|
||||
},
|
||||
BufferInactiveTarget = {
|
||||
bg = "#292e42",
|
||||
@ -333,14 +340,14 @@ local highlights = {
|
||||
fg = "#ba945f"
|
||||
},
|
||||
BufferLineIndicatorSelected = {
|
||||
fg = "#506d9b"
|
||||
fg = "#6183bb"
|
||||
},
|
||||
BufferOffset = {
|
||||
bg = "#1f2335",
|
||||
fg = "#737aa2"
|
||||
},
|
||||
BufferTabpageFill = {
|
||||
bg = "#333749",
|
||||
bg = "#282d41",
|
||||
fg = "#737aa2"
|
||||
},
|
||||
BufferTabpages = {
|
||||
@ -542,6 +549,9 @@ local highlights = {
|
||||
CursorLineNr = {
|
||||
fg = "#737aa2"
|
||||
},
|
||||
DapStoppedLine = {
|
||||
bg = "#373640"
|
||||
},
|
||||
DashboardCenter = {
|
||||
fg = "#bb9af7"
|
||||
},
|
||||
@ -555,6 +565,9 @@ local highlights = {
|
||||
DashboardShortCut = {
|
||||
fg = "#7dcfff"
|
||||
},
|
||||
Debug = {
|
||||
fg = "#ff9e64"
|
||||
},
|
||||
DefinitionCount = {
|
||||
fg = "#9d7cd8"
|
||||
},
|
||||
@ -589,6 +602,9 @@ local highlights = {
|
||||
sp = "#e0af68",
|
||||
undercurl = true
|
||||
},
|
||||
DiagnosticUnnecessary = {
|
||||
fg = "#414868"
|
||||
},
|
||||
DiagnosticVirtualTextError = {
|
||||
bg = "#362c3d",
|
||||
fg = "#db4b4b"
|
||||
@ -659,22 +675,22 @@ local highlights = {
|
||||
style = {}
|
||||
},
|
||||
GitGutterAdd = {
|
||||
fg = "#399a96"
|
||||
fg = "#266d6a"
|
||||
},
|
||||
GitGutterChange = {
|
||||
fg = "#6382bd"
|
||||
fg = "#536c9e"
|
||||
},
|
||||
GitGutterDelete = {
|
||||
fg = "#c25d64"
|
||||
fg = "#b2555b"
|
||||
},
|
||||
GitSignsAdd = {
|
||||
fg = "#399a96"
|
||||
fg = "#266d6a"
|
||||
},
|
||||
GitSignsChange = {
|
||||
fg = "#6382bd"
|
||||
fg = "#536c9e"
|
||||
},
|
||||
GitSignsDelete = {
|
||||
fg = "#c25d64"
|
||||
fg = "#b2555b"
|
||||
},
|
||||
GlyphPalette1 = {
|
||||
fg = "#db4b4b"
|
||||
@ -1168,7 +1184,7 @@ local highlights = {
|
||||
},
|
||||
NeogitDiffAddHighlight = {
|
||||
bg = "#283b4d",
|
||||
fg = "#4097a3"
|
||||
fg = "#449dab"
|
||||
},
|
||||
NeogitDiffContextHighlight = {
|
||||
bg = "#30354e",
|
||||
@ -1176,7 +1192,7 @@ local highlights = {
|
||||
},
|
||||
NeogitDiffDeleteHighlight = {
|
||||
bg = "#3f2d3d",
|
||||
fg = "#c47981"
|
||||
fg = "#914c54"
|
||||
},
|
||||
NeogitHunkHeader = {
|
||||
bg = "#292e42",
|
||||
@ -1420,13 +1436,13 @@ local highlights = {
|
||||
fg = "#7aa2f7"
|
||||
},
|
||||
NvimTreeGitDeleted = {
|
||||
fg = "#c47981"
|
||||
fg = "#914c54"
|
||||
},
|
||||
NvimTreeGitDirty = {
|
||||
fg = "#506d9b"
|
||||
fg = "#6183bb"
|
||||
},
|
||||
NvimTreeGitNew = {
|
||||
fg = "#4097a3"
|
||||
fg = "#449dab"
|
||||
},
|
||||
NvimTreeImageFile = {
|
||||
fg = "#a9b1d6"
|
||||
@ -1738,10 +1754,10 @@ local highlights = {
|
||||
bg = "#1f2335"
|
||||
},
|
||||
diffAdded = {
|
||||
fg = "#4097a3"
|
||||
fg = "#449dab"
|
||||
},
|
||||
diffChanged = {
|
||||
fg = "#506d9b"
|
||||
fg = "#6183bb"
|
||||
},
|
||||
diffFile = {
|
||||
fg = "#7aa2f7"
|
||||
@ -1759,7 +1775,7 @@ local highlights = {
|
||||
fg = "#e0af68"
|
||||
},
|
||||
diffRemoved = {
|
||||
fg = "#c47981"
|
||||
fg = "#914c54"
|
||||
},
|
||||
healthError = {
|
||||
fg = "#db4b4b"
|
||||
|
@ -744,7 +744,7 @@
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>foreground</key>
|
||||
<string>#4097a3</string>
|
||||
<string>#4197a4</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<dict>
|
||||
@ -766,7 +766,7 @@
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>foreground</key>
|
||||
<string>#506d9b</string>
|
||||
<string>#506d9c</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<dict>
|
||||
|
@ -744,7 +744,7 @@
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>foreground</key>
|
||||
<string>#2c6c75</string>
|
||||
<string>#449dab</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<dict>
|
||||
@ -766,7 +766,7 @@
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>foreground</key>
|
||||
<string>#6183b9</string>
|
||||
<string>#6183bb</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<dict>
|
||||
|
@ -744,7 +744,7 @@
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>foreground</key>
|
||||
<string>#2c6c75</string>
|
||||
<string>#449dab</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<dict>
|
||||
@ -766,7 +766,7 @@
|
||||
<key>settings</key>
|
||||
<dict>
|
||||
<key>foreground</key>
|
||||
<string>#6183b9</string>
|
||||
<string>#6183bb</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<dict>
|
||||
|
Loading…
Reference in New Issue
Block a user