Browse Source

fix: colorschem updates

christianchiarulli 3 years ago
parent
commit
afa0efd5dd
3 changed files with 4 additions and 3 deletions
  1. 2 1
      lua/onedarker/LSP.lua
  2. 1 1
      lua/onedarker/highlights.lua
  3. 1 1
      lua/onedarker/markdown.lua

+ 2 - 1
lua/onedarker/LSP.lua

@@ -27,7 +27,8 @@ local LSP = {
   QuickScopeSecondary = { fg = C.cyan_test, style = "underline" },
   TelescopeSelection = { fg = C.hint_blue },
   TelescopeMatching = { fg = C.info_yellow, style = "bold" },
-  TelescopeBorder = { fg = C.cyan, bg = Config.transparent_background and "NONE" or C.bg },
+  TelescopeBorder = { fg = C.blue, bg = Config.transparent_background and "NONE" or C.bg },
+  TelescopePromptPrefix = { fg = C.purple },
   NvimTreeFolderIcon = { fg = C.blue },
   NvimTreeIndentMarker = { fg = C.gray },
   NvimTreeNormal = { fg = C.light_gray, bg = C.alt_bg },

+ 1 - 1
lua/onedarker/highlights.lua

@@ -54,7 +54,7 @@ local highlights = {
   Question = { fg = C.orange },
   EndOfBuffer = { fg = C.bg },
   NonText = { fg = C.context },
-  Variable = { fg = C.fg },
+  Variable = { fg = C.cyan },
   String = { fg = C.green },
   Character = { fg = C.green },
   Constant = { fg = C.orange },

+ 1 - 1
lua/onedarker/markdown.lua

@@ -10,7 +10,7 @@ local markdown = {
   markdownH4 = { fg = C.blue },
   markdownH5 = { fg = C.blue },
   markdownH6 = { fg = C.blue },
-  markdownHeadingDelimiter = { fg = C.red },
+  markdownHeadingDelimiter = { fg = C.blue },
   markdownHeadingRule = { fg = C.accent },
   markdownId = { fg = C.purple },
   markdownIdDeclaration = { fg = C.blue },