summaryrefslogtreecommitdiff
path: root/colors
diff options
context:
space:
mode:
Diffstat (limited to 'colors')
-rw-r--r--colors/notsoquiet.lua32
1 files changed, 30 insertions, 2 deletions
diff --git a/colors/notsoquiet.lua b/colors/notsoquiet.lua
index f87ae7b..b4d2b84 100644
--- a/colors/notsoquiet.lua
+++ b/colors/notsoquiet.lua
@@ -9,7 +9,7 @@ local hi = function(name, val)
end
local c = {
- bg = "#1e1e1e",
+ bg = vim.g.notsoquiet_trans and "none" or "#1e1e1e",
bg1 = "#303030",
bg2 = "#222222",
fg = "#cccccc",
@@ -25,6 +25,7 @@ local c = {
blue = "#6688ff",
blue1 = "#729fcf",
darkblue = "#364e81",
+ darkerblue = "#213768",
yellow = "#ffff00",
darkyellow = "#cdcd00",
pink = "#d7005f",
@@ -41,6 +42,8 @@ hi("Repeat", { link = "Keyword" })
hi("Macro", { link = "Keyword" })
hi("Define", { link = "Keyword" })
+hi("PreProc", { fg = c.orange })
+
hi("Function", { fg = c.magenta, bold = true })
hi("@function", { link = "Function" })
@@ -77,7 +80,7 @@ hi("texMathDelim", { fg = c.orange })
hi("texMathSymbol", { link = "Number" })
hi("texMathDelimZone", { fg = c.fg1, bold = true })
-hi("StatusLine", { bg = c.darkblue, bold = true, fg = c.fg1 })
+hi("StatusLine", { bg = c.darkblue, fg = c.fg1 })
hi("Todo", { fg = c.yellow, reverse = true, bold = true })
hi("MiniHipatternsTodo", { link = "Todo" })
@@ -87,6 +90,21 @@ hi("SpellCap", { sp = "#0087d7", undercurl = true })
hi("SpellLocal", { sp = "#d787d7", undercurl = true })
hi("SpellRare", { sp = "#00afaf", undercurl = true })
+hi("DiffAdd", { bg = "#232D1A" })
+hi("diffAdded", { link = "DiffAdd" })
+hi("Added", { link = "DiffAdd" })
+hi("DiffChange", { bg = "#1D2C36" })
+hi("diffChanged", { link = "DiffChange" })
+hi("Changed", { link = "DiffChange" })
+hi("DiffDelete", { bg = "#3E2225" })
+hi("diffRemoved", { link = "DiffDelete" })
+hi("Removed", { link = "DiffDelete" })
+hi("DiffText", { fg = "#BBBBBB", bg = "#324757" })
+
+hi("GitSignsAdd", { fg = "#405827" })
+hi("GitSignsChange", { fg = "#0b3e5a" })
+hi("GitSignsDelete", { fg = "#5c262e" })
+
hi("DiffTextAdd", { italic = true })
hi("DiffAdded", { link = "DiffAdd" })
hi("@diff.plus", { link = "DiffAdd" })
@@ -114,6 +132,16 @@ hi("FzfLuaFzfPointer", { fg = c.red })
hi("DiagnosticHint", { fg = c.blue })
hi("DiagnosticUnderlineHint", { sp = c.blue, underline = true })
+hi("SLDev", { bg = c.darkerblue })
+hi("SLFilename", { link = "StatusLine" })
+hi("SLFileInfo", { bg = c.darkerblue, bold = true })
+hi("SLLocation", { bg = c.darkerblue })
+
+hi("DiagSLError", { bg = c.darkerblue, fg = "Red" })
+hi("DiagSLWarn", { bg = c.darkerblue, fg = "Orange" })
+hi("DiagSLInfo", { bg = c.darkerblue, fg = "LightBlue" })
+hi("DiagSLHint", { bg = c.darkerblue, fg = c.blue })
+
-- hi("Normal", { fg = "#dadada", bg = "None" })
-- hi("NormalFloat", { fg = "#dadada", bg = "#303030" })
-- hi("String", { fg = "#6eb167" })