Skip to content

Commit

Permalink
feat(treesitter): change markdown title colors to be more ordered
Browse files Browse the repository at this point in the history
  • Loading branch information
A-Lamia authored and mehalter committed Jul 17, 2023
1 parent 067d786 commit a4d3022
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lua/astrotheme/groups/plugins/nvim-treesitter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,11 @@ local function callback(opts)
["@text.underline"] = { link = "Underline" },
["@text.strike"] = { fg = C.syntax.green, strikethrough = true },
["@text.title"] = { fg = C.syntax.text, bold = true },
["@text.title.1.markdown"] = { fg = C.syntax.text, bold = true },
["@text.title.2.markdown"] = { fg = C.syntax.purple, bold = true },
["@text.title.3.markdown"] = { fg = C.syntax.blue, bold = true },
["@text.title.4.markdown"] = { fg = C.syntax.cyan, bold = true },
["@text.title.5.markdown"] = { fg = C.syntax.green, bold = true },
["@text.title.1.markdown"] = { fg = C.syntax.purple, bold = true },
["@text.title.2.markdown"] = { fg = C.syntax.blue, bold = true },
["@text.title.3.markdown"] = { fg = C.syntax.cyan, bold = true },
["@text.title.4.markdown"] = { fg = C.syntax.green, bold = true },
["@text.title.5.markdown"] = { fg = C.syntax.yellow, bold = true },
["@text.literal"] = { fg = C.syntax.text },
["@text.quote"] = { fg = C.syntax.text, italic = true },
["@text.uri"] = { fg = C.syntax.green, italic = true, underline = true },
Expand Down

0 comments on commit a4d3022

Please sign in to comment.